From ebc4c4c414e786387388cbed41c3252dfc767431 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 14 Sep 2020 21:05:09 +0000 Subject: [PATCH 001/148] deploy: 78a41424ac85274cfbe87aa477f4331488637fbb --- .nojekyll | 0 JSArray/index.html | 187 +++++++++++ JSArrayRef/index.html | 50 +++ JSArray_Iterator/index.html | 117 +++++++ JSClosure/index.html | 129 ++++++++ JSDate/index.html | 365 +++++++++++++++++++++ JSError/index.html | 134 ++++++++ JSFunction/index.html | 163 +++++++++ JSFunctionRef/index.html | 50 +++ JSObject/index.html | 176 ++++++++++ JSObjectRef/index.html | 50 +++ JSTypedArray/index.html | 163 +++++++++ JSValue/index.html | 199 +++++++++++ JSValueConstructible/index.html | 113 +++++++ JSValueConvertible/index.html | 147 +++++++++ JSValueDecoder/index.html | 74 +++++ TypedArrayElement/index.html | 136 ++++++++ _call_host_function(_:_:_:_:)/index.html | 50 +++ _cleanup_host_function_call(_:)/index.html | 50 +++ _prepare_host_function_call(_:)/index.html | 50 +++ all.css | 1 + getJSValue(this:index:)/index.html | 50 +++ getJSValue(this:name:)/index.html | 50 +++ index.html | 253 ++++++++++++++ setJSValue(this:index:value:)/index.html | 50 +++ setJSValue(this:name:value:)/index.html | 50 +++ 26 files changed, 2857 insertions(+) create mode 100644 .nojekyll create mode 100644 JSArray/index.html create mode 100644 JSArrayRef/index.html create mode 100644 JSArray_Iterator/index.html create mode 100644 JSClosure/index.html create mode 100644 JSDate/index.html create mode 100644 JSError/index.html create mode 100644 JSFunction/index.html create mode 100644 JSFunctionRef/index.html create mode 100644 JSObject/index.html create mode 100644 JSObjectRef/index.html create mode 100644 JSTypedArray/index.html create mode 100644 JSValue/index.html create mode 100644 JSValueConstructible/index.html create mode 100644 JSValueConvertible/index.html create mode 100644 JSValueDecoder/index.html create mode 100644 TypedArrayElement/index.html create mode 100644 _call_host_function(_:_:_:_:)/index.html create mode 100644 _cleanup_host_function_call(_:)/index.html create mode 100644 _prepare_host_function_call(_:)/index.html create mode 100644 all.css create mode 100644 getJSValue(this:index:)/index.html create mode 100644 getJSValue(this:name:)/index.html create mode 100644 index.html create mode 100644 setJSValue(this:index:value:)/index.html create mode 100644 setJSValue(this:name:value:)/index.html diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/JSArray/index.html b/JSArray/index.html new file mode 100644 index 000000000..c1e61cce7 --- /dev/null +++ b/JSArray/index.html @@ -0,0 +1,187 @@ + + + + + + JavaScriptKit - JSArray + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSArray +

+ +
public class JSArray
+
+ +
+ + + + + + +%3 + + + +JSArray + + +JSArray + + + + + +RandomAccessCollection + + +RandomAccessCollection + + + + + +JSArray->RandomAccessCollection + + + + + + + + +
+

Nested Types

+
+
JSArray.Iterator
+
+
+

Conforms To

+
+
RandomAccessCollection
+
+
+
+

Nested Type Aliases

+ +
+

+ Element +

+
public typealias Element = JSValue
+
+
+
+

Initializers

+ +
+

+ init?(_:​) +

+
public init?(_ ref: JSObject)
+
+
+
+

Properties

+ +
+

+ start​Index +

+
var startIndex: Int
+
+
+

+ end​Index +

+
var endIndex: Int
+
+
+

+ length +

+
var length: Int
+
+

The number of elements in that array including empty hole. +Note that length respects JavaScript's Array.prototype.length

+ +
+
+

e.g.

+ +
const array = [1, , 3];
+
+ +
let array: JSArray = ...
+array.length // 3
+array.count  // 2
+
+
+
+
+

+ count +

+
var count: Int
+
+

The number of elements in that array not including empty hole. +Note that count syncs with the number that Iterator can iterate. +See also: JSArray.length

+ +
+
+
+
+

Methods

+ +
+

+ make​Iterator() +

+
public func makeIterator() -> Iterator
+
+
+ + + +
+
+ + + + diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html new file mode 100644 index 000000000..0abf18baf --- /dev/null +++ b/JSArrayRef/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - JSArrayRef + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Typealias + JSArray​Ref +

+ +
@available(*, deprecated, renamed: "JSArray") public typealias JSArrayRef = JSArray
+
+
+ + + + diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html new file mode 100644 index 000000000..ded0f695b --- /dev/null +++ b/JSArray_Iterator/index.html @@ -0,0 +1,117 @@ + + + + + + JavaScriptKit - JSArray.Iterator + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSArray.​Iterator +

+ +
public class Iterator: IteratorProtocol
+
+ +
+ + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + + +IteratorProtocol + + + + + +JSArray.Iterator->IteratorProtocol + + + + + + + + +
+

Member Of

+
+
JSArray
+
+
+

Conforms To

+
+
IteratorProtocol
+
+
+
+

Methods

+ +
+

+ next() +

+
public func next() -> Element?
+
+
+ + + +
+
+ + + + diff --git a/JSClosure/index.html b/JSClosure/index.html new file mode 100644 index 000000000..aa423c2bc --- /dev/null +++ b/JSClosure/index.html @@ -0,0 +1,129 @@ + + + + + + JavaScriptKit - JSClosure + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSClosure +

+ +
public class JSClosure: JSFunction
+
+ +
+ + + + + + +%3 + + + +JSClosure + + +JSClosure + + + + + +JSFunction + + +JSFunction + + + + + +JSClosure->JSFunction + + + + + + + + +
+

Superclass

+
+
JSFunction
+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
public init(_ body: @escaping ([JSValue]) -> JSValue)
+
+
+

+ init(_:​) +

+
convenience public init(_ body: @escaping ([JSValue]) -> ())
+
+
+
+

Methods

+ +
+

+ release() +

+
public func release()
+
+
+ + + +
+
+ + + + diff --git a/JSDate/index.html b/JSDate/index.html new file mode 100644 index 000000000..ed99ebc7c --- /dev/null +++ b/JSDate/index.html @@ -0,0 +1,365 @@ + + + + + + JavaScriptKit - JSDate + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSDate +

+ +
public final class JSDate
+
+ +
+ + + + + + +%3 + + + +JSDate + + +JSDate + + + + + +Comparable + + +Comparable + + + + + +JSDate->Comparable + + + + + + + + +
+

Conforms To

+
+
Comparable
+
+
+
+

Initializers

+ +
+

+ init(milliseconds​Since​Epoch:​) +

+
public init(millisecondsSinceEpoch: Double? = nil)
+
+
+

+ init(year:​month​Index:​day:​hours:​minutes:​seconds:​milliseconds:​) +

+
public init(year: Int, monthIndex: Int, day: Int = 1, hours: Int = 0, minutes: Int = 0, seconds: Int = 0, milliseconds: Int = 0)
+
+

According to the standard, monthIndex is zero-indexed, where 11 is December. day +represents a day of the month starting at 1.

+ +
+
+
+
+

Properties

+ +
+

+ ref +

+
let ref: JSObject
+
+
+

+ full​Year +

+
var fullYear: Int
+
+

Year of this date in local time zone.

+ +
+
+
+

+ month +

+
var month: Int
+
+

Month of this date in 0–11 range in local time zone

+ +
+
+
+

+ date +

+
var date: Int
+
+

The day of the month in 1..31 range in local time zone.

+ +
+
+
+

+ day +

+
var day: Int
+
+

The day of the week in 0..6 range in local time zone.

+ +
+
+
+

+ hours +

+
var hours: Int
+
+

The amount of hours in this day from 0..23 range in local time zone.

+ +
+
+
+

+ minutes +

+
var minutes: Int
+
+

The amount of minutes in this hours from 0..59 range in local time zone.

+ +
+
+
+

+ seconds +

+
var seconds: Int
+
+

The amount of seconds in this minute from 0..59 range in local time zone.

+ +
+
+
+

+ milliseconds +

+
var milliseconds: Int
+
+

The amount of milliseconds in this second 0..999 range in local time zone.

+ +
+
+
+

+ utc​Full​Year +

+
var utcFullYear: Int
+
+

Year of this date in the UTC time zone

+ +
+
+
+

+ utc​Month +

+
var utcMonth: Int
+
+

Month of this date in 0–11 range in the UTC time zone

+ +
+
+
+

+ utc​Date +

+
var utcDate: Int
+
+

The day of the month in 1..31 range in the UTC time zone

+ +
+
+
+

+ utc​Day +

+
var utcDay: Int
+
+

The day of the week in 0..6 range in the UTC time zone

+ +
+
+
+

+ utc​Hours +

+
var utcHours: Int
+
+

The amount of hours in this day from 0..23 range in the UTC time zone

+ +
+
+
+

+ utc​Minutes +

+
var utcMinutes: Int
+
+

The amount of minutes in this hours from 0..59 range in the UTC time zone

+ +
+
+
+

+ utc​Seconds +

+
var utcSeconds: Int
+
+

The amount of seconds in this minute from 0..59 range in the UTC time zone

+ +
+
+
+

+ utc​Milliseconds +

+
var utcMilliseconds: Int
+
+

The amount of milliseconds in this second 0..999 range in the UTC time zone

+ +
+
+
+

+ timezone​Offset +

+
var timezoneOffset: Int
+
+

Offset in minutes between the local time zone and UTC

+ +
+
+
+
+

Methods

+ +
+

+ to​ISOString() +

+
public func toISOString() -> String
+
+
+

+ to​Locale​Date​String() +

+
public func toLocaleDateString() -> String
+
+
+

+ to​Locale​Time​String() +

+
public func toLocaleTimeString() -> String
+
+
+

+ to​UTCString() +

+
public func toUTCString() -> String
+
+
+

+ now() +

+
public static func now() -> Double
+
+

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring leap +seconds

+ +
+
+
+

+ value​Of() +

+
public func valueOf() -> Double
+
+

Number of milliseconds since midnight 01 January 1970 UTC to the given date ignoring leap +seconds

+ +
+
+
+

+ ==(lhs:​rhs:​) +

+
public static func ==(lhs: JSDate, rhs: JSDate) -> Bool
+
+
+

+ <(lhs:​rhs:​) +

+
public static func <(lhs: JSDate, rhs: JSDate) -> Bool
+
+
+ + + +
+
+ + + + diff --git a/JSError/index.html b/JSError/index.html new file mode 100644 index 000000000..a5519cd49 --- /dev/null +++ b/JSError/index.html @@ -0,0 +1,134 @@ + + + + + + JavaScriptKit - JSError + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSError +

+ +
public final class JSError
+
+ +
+ + + + + + +%3 + + + +JSError + + +JSError + + + + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSError->CustomStringConvertible + + + + + + + + +
+

Conforms To

+
+
CustomStringConvertible
+
+
+
+

Initializers

+ +
+

+ init(message:​) +

+
public init(message: String)
+
+
+
+

Properties

+ +
+

+ message +

+
var message: String
+
+
+

+ name +

+
var name: String
+
+
+

+ description +

+
var description: String
+
+
+ + + +
+
+ + + + diff --git a/JSFunction/index.html b/JSFunction/index.html new file mode 100644 index 000000000..015240008 --- /dev/null +++ b/JSFunction/index.html @@ -0,0 +1,163 @@ + + + + + + JavaScriptKit - JSFunction + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSFunction +

+ +
public class JSFunction: JSObject
+
+ +
+ + + + + + +%3 + + + +JSFunction + + +JSFunction + + + + + +JSObject + + +JSObject + + + + + +JSFunction->JSObject + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSFunction + + + + + + + + +
+

Superclass

+
+
JSObject
+
+
+

Subclasses

+
+
JSClosure
+
+
+
+
+

Methods

+ +
+

+ call​AsFunction(this:​arguments:​) +

+
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [JSValueConvertible]) -> JSValue
+
+
+

+ call​AsFunction(this:​_:​) +

+
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: JSValueConvertible) -> JSValue
+
+
+

+ new(_:​) +

+
public func new(_ arguments: JSValueConvertible) -> JSObject
+
+
+

+ new(arguments:​) +

+
public func new(arguments: [JSValueConvertible]) -> JSObject
+
+
+

+ from(_:​) +

+
@available(*, unavailable, message: "Please use JSClosure instead") public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction
+
+
+

+ js​Value() +

+
override public func jsValue() -> JSValue
+
+
+ + + +
+
+ + + + diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html new file mode 100644 index 000000000..33a14c175 --- /dev/null +++ b/JSFunctionRef/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - JSFunctionRef + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Typealias + JSFunction​Ref +

+ +
@available(*, deprecated, renamed: "JSFunction") public typealias JSFunctionRef = JSFunction
+
+
+ + + + diff --git a/JSObject/index.html b/JSObject/index.html new file mode 100644 index 000000000..c8460c87a --- /dev/null +++ b/JSObject/index.html @@ -0,0 +1,176 @@ + + + + + + JavaScriptKit - JSObject + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSObject +

+ +
@dynamicMemberLookup public class JSObject: Equatable
+
+ +
+ + + + + + +%3 + + + +JSObject + + +JSObject + + + + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSObject->CustomStringConvertible + + + + + +Equatable + + +Equatable + + + + + +JSObject->Equatable + + + + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + + + + + + +
+

Subclasses

+
+
JSFunction
+
+
+

Conforms To

+
+
CustomStringConvertible
+
Equatable
+
+
+
+

Properties

+ +
+

+ global +

+
let global
+
+
+

+ description +

+
var description: String
+
+
+
+

Methods

+ +
+

+ is​Instance​Of(_:​) +

+
public func isInstanceOf(_ constructor: JSFunction) -> Bool
+
+
+

+ ==(lhs:​rhs:​) +

+
public static func ==(lhs: JSObject, rhs: JSObject) -> Bool
+
+
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+
+ + + +
+
+ + + + diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html new file mode 100644 index 000000000..ee1da9a25 --- /dev/null +++ b/JSObjectRef/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - JSObjectRef + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Typealias + JSObject​Ref +

+ +
@available(*, deprecated, renamed: "JSObject") public typealias JSObjectRef = JSObject
+
+
+ + + + diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html new file mode 100644 index 000000000..d6460636e --- /dev/null +++ b/JSTypedArray/index.html @@ -0,0 +1,163 @@ + + + + + + JavaScriptKit - JSTypedArray + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSTyped​Array +

+ +
public class JSTypedArray<Element>: JSValueConvertible, ExpressibleByArrayLiteral where Element: TypedArrayElement
+
+ +
+ + + + + + +%3 + + + +JSTypedArray + + +JSTypedArray + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +JSTypedArray->JSValueConvertible + + + + + +ExpressibleByArrayLiteral + + +ExpressibleByArrayLiteral + + + + + +JSTypedArray->ExpressibleByArrayLiteral + + + + + + + + +
+

Conforms To

+
+
JSValueConvertible
+
+
ExpressibleByArrayLiteral
+
+
+
+

Initializers

+ +
+

+ init?(_:​) +

+
public init?(_ object: JSObject)
+
+
+

+ init(length:​) +

+
public convenience init(length: Int)
+
+
+

+ init(array​Literal:​) +

+
required public convenience init(arrayLiteral elements: Element)
+
+
+

+ init(_:​) +

+
public convenience init(_ array: [Element])
+
+
+

+ init(_:​) +

+
public convenience init(_ stride: StrideTo<Element>) where Element: Strideable
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+
+ + + +
+
+ + + + diff --git a/JSValue/index.html b/JSValue/index.html new file mode 100644 index 000000000..09f93f066 --- /dev/null +++ b/JSValue/index.html @@ -0,0 +1,199 @@ + + + + + + JavaScriptKit - JSValue + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Enumeration + JSValue +

+ +
public enum JSValue
+
+ +
+ + + +
+

Conforms To

+
+
JSValueConvertible
+
+
Equatable
+
ExpressibleByIntegerLiteral
+
ExpressibleByStringLiteral
+
+
+
+

Initializers

+ +
+

+ init(string​Literal:​) +

+
public init(stringLiteral value: String)
+
+
+

+ init(integer​Literal:​) +

+
public init(integerLiteral value: Double)
+
+
+
+

Enumeration Cases

+ +
+

+ boolean +

+
case boolean(: Bool)
+
+
+

+ string +

+
case string(: String)
+
+
+

+ number +

+
case number(: Double)
+
+
+

+ object +

+
case object(: JSObject)
+
+
+

+ null +

+
case null
+
+
+

+ undefined +

+
case undefined
+
+
+

+ function +

+
case function(: JSFunction)
+
+
+
+

Properties

+ +
+

+ array +

+
var array: JSArray?
+
+
+

+ boolean +

+
var boolean: Bool?
+
+
+

+ string +

+
var string: String?
+
+
+

+ number +

+
var number: Double?
+
+
+

+ object +

+
var object: JSObject?
+
+
+

+ is​Null +

+
var isNull: Bool
+
+
+

+ is​Undefined +

+
var isUndefined: Bool
+
+
+

+ function +

+
var function: JSFunction?
+
+
+
+

Methods

+ +
+

+ function(_:​) +

+
public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue
+
+
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+
+ + + +
+
+ + + + diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html new file mode 100644 index 000000000..bea8dff61 --- /dev/null +++ b/JSValueConstructible/index.html @@ -0,0 +1,113 @@ + + + + + + JavaScriptKit - JSValueConstructible + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + JSValue​Constructible +

+ +
public protocol JSValueConstructible
+
+ +
+ + + + + + +%3 + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->JSValueConstructible + + + + + + + + +
+

Types Conforming to JSValue​Constructible

+
+
TypedArrayElement
+
+
+
+ + + +
+

Requirements

+ +
+

+ construct(from:​) +

+
static func construct(from value: JSValue) -> Self?
+
+
+
+
+ + + + diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html new file mode 100644 index 000000000..fe2e02e29 --- /dev/null +++ b/JSValueConvertible/index.html @@ -0,0 +1,147 @@ + + + + + + JavaScriptKit - JSValueConvertible + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + JSValue​Convertible +

+ +
public protocol JSValueConvertible
+
+ +
+ + + + + + +%3 + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->JSValueConvertible + + + + + +JSValue + + +JSValue + + + + + +JSValue->JSValueConvertible + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSValueConvertible + + + + + + + + +
+

Types Conforming to JSValue​Convertible

+
+
TypedArrayElement
+
+
JSTypedArray
+
+
JSValue
+
+
+
+ + + +
+

Requirements

+ +
+

+ js​Value() +

+
func jsValue() -> JSValue
+
+
+
+
+ + + + diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html new file mode 100644 index 000000000..ec4a9c6bb --- /dev/null +++ b/JSValueDecoder/index.html @@ -0,0 +1,74 @@ + + + + + + JavaScriptKit - JSValueDecoder + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSValue​Decoder +

+ +
public class JSValueDecoder
+ +
+

Initializers

+ +
+

+ init() +

+
public init()
+
+
+
+

Methods

+ +
+

+ decode(_:​from:​user​Info:​) +

+
public func decode<T>(_: T.Type = T.self, from value: JSValue, userInfo: [CodingUserInfoKey: Any] = [:]) throws -> T where T: Decodable
+
+
+ + + +
+
+ + + + diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html new file mode 100644 index 000000000..eb3b2df32 --- /dev/null +++ b/TypedArrayElement/index.html @@ -0,0 +1,136 @@ + + + + + + JavaScriptKit - TypedArrayElement + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + Typed​Array​Element +

+ +
public protocol TypedArrayElement: JSValueConvertible, JSValueConstructible
+
+ +
+ + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement->JSValueConstructible + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement->JSValueConvertible + + + + + + + + +
+

Conforms To

+
+
JSValueConstructible
+
+
JSValueConvertible
+
+
+
+ + + +
+

Requirements

+ +
+

+ typed​Array​Kind +

+
var typedArrayKind: JavaScriptTypedArrayKind
+
+
+

+ typed​Array​Class +

+
var typedArrayClass: JSFunction
+
+
+
+
+ + + + diff --git a/_call_host_function(_:_:_:_:)/index.html b/_call_host_function(_:_:_:_:)/index.html new file mode 100644 index 000000000..6e31e2862 --- /dev/null +++ b/_call_host_function(_:_:_:_:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - _call_host_function(_:_:_:_:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +_call_host_function(_:​_:​_:​_:​) +

+ +
@_cdecl("swjs_call_host_function") public func _call_host_function(_ hostFuncRef: JavaScriptHostFuncRef, _ argv: UnsafePointer<RawJSValue>, _ argc: Int32, _ callbackFuncRef: JavaScriptObjectRef)
+
+
+ + + + diff --git a/_cleanup_host_function_call(_:)/index.html b/_cleanup_host_function_call(_:)/index.html new file mode 100644 index 000000000..6a829b9a0 --- /dev/null +++ b/_cleanup_host_function_call(_:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - _cleanup_host_function_call(_:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +_cleanup_host_function_call(_:​) +

+ +
@_cdecl("swjs_cleanup_host_function_call") public func _cleanup_host_function_call(_ pointer: UnsafeMutableRawPointer)
+
+
+ + + + diff --git a/_prepare_host_function_call(_:)/index.html b/_prepare_host_function_call(_:)/index.html new file mode 100644 index 000000000..4542560d4 --- /dev/null +++ b/_prepare_host_function_call(_:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - _prepare_host_function_call(_:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +_prepare_host_function_call(_:​) +

+ +
@_cdecl("swjs_prepare_host_function_call") public func _prepare_host_function_call(_ argc: Int32) -> UnsafeMutableRawPointer
+
+
+ + + + diff --git a/all.css b/all.css new file mode 100644 index 000000000..82e45b4c8 --- /dev/null +++ b/all.css @@ -0,0 +1 @@ +:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0130 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 110-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0170 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 11.05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 011.92.35V65a5.69 5.69 0 00-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71L19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0 .5em .2em 0;vertical-align:middle;display:inline-block}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:.4em}:matches(h1,h2,h3,h4,h5,h6)+:matches(h1,h2,h3,h4,h5,h6){margin-top:.4em}:is(p,ul,ol)+:is(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:matches(p,ul,ol)+:matches(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-feature-settings:"c2sc";font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{margin:0;list-style:none}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border-radius:4px;border:1px solid #e5e5ea;border:1px solid var(--separator);color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input [type=email]:focus,input[type=number],input [type=number]:focus,input[type=password],input [type=password]:focus,input[type=tel],input [type=tel]:focus,input[type=text],input [type=text]:focus,input[type=url],input [type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-webkit-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}:-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border-radius:4px;border:none;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;outline:0;box-shadow:0 0 0 3px rgba(0,136,204,.3);z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{width:100%;font:300 11pt/13pt sans-serif;font:var(--caption-1);caption-side:bottom;margin-bottom:2em}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{width:90vw;max-width:1280px;margin:1em auto}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{text-transform:uppercase;font-size:small;font-weight:300;letter-spacing:.1ch}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;padding:1em 0;font:300 11pt/13pt sans-serif;font:var(--caption-1)}@media screen and (max-width:768px){body{width:96vw;max-width:100%}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);text-align:left;padding:1em 0}body>nav{display:none}body>main{padding:0 1em}}@media screen and (max-width:768px){#relationships figure{display:none}section>[role=article][class] pre{margin-left:-2.5em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;overflow:auto;padding:0 1em 3em;position:-webkit-sticky;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-left:2em;margin-bottom:1em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:smaller;margin-bottom:2em;overflow-x:auto;padding:1em 1em 1em 3em;text-indent:-2em;white-space:pre}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{text-decoration:underline;color:#8e8e93;color:var(--placeholder-text)}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{max-width:100%;height:auto!important;margin:0 auto;display:block}h1 small{font-size:.5em;line-height:1.5;display:block;font-weight:400;color:#636366;color:var(--quaternary-label)}dd code,li code,p code{font-size:smaller;color:#3c3c43;color:var(--secondary-label)}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-size:1em;background-repeat:no-repeat;background-position:left .25em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{margin-bottom:1em;padding-bottom:1em;border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);padding-left:2em!important}section>[role=article]:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:none}dl dt[class],nav li[class]{list-style:none;text-indent:-1em;margin-bottom:.5em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:var(--icon-associatedtype);--link:var(--system-pink)}.case,.enumeration_case{--background-image:var(--icon-case);--link:var(--system-teal)}.class{--background-image:var(--icon-class);--link:var(--system-indigo)}.enumeration{--background-image:var(--icon-enumeration)}.enumeration,.extension{--link:var(--system-orange)}.extension{--background-image:var(--icon-extension)}.function{--background-image:var(--icon-function);--link:var(--system-green)}.initializer,.method{--background-image:var(--icon-method);--link:var(--system-blue)}.property{--background-image:var(--icon-property);--link:var(--system-teal)}.protocol{--background-image:var(--icon-protocol);--link:var(--system-pink)}.structure{--background-image:var(--icon-structure);--link:var(--system-purple)}.typealias{--background-image:var(--icon-typealias)}.typealias,.variable{--link:var(--system-green)}.variable{--background-image:var(--icon-variable)}.unknown{--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html new file mode 100644 index 000000000..85b446db0 --- /dev/null +++ b/getJSValue(this:index:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - getJSValue(this:index:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +get​JSValue(this:​index:​) +

+ +
public func getJSValue(this: JSObject, index: Int32) -> JSValue
+
+
+ + + + diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html new file mode 100644 index 000000000..24a588250 --- /dev/null +++ b/getJSValue(this:name:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - getJSValue(this:name:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +get​JSValue(this:​name:​) +

+ +
public func getJSValue(this: JSObject, name: String) -> JSValue
+
+
+ + + + diff --git a/index.html b/index.html new file mode 100644 index 000000000..1a352d802 --- /dev/null +++ b/index.html @@ -0,0 +1,253 @@ + + + + + + JavaScriptKit - JavaScriptKit + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+
+

Classes

+
+
+ + JSArray + +
+
+ +
+
+ + JSArray.​Iterator + +
+
+ +
+
+ + JSDate + +
+
+ +
+
+ + JSError + +
+
+ +
+
+ + JSTyped​Array + +
+
+ +
+
+ + JSFunction + +
+
+ +
+
+ + JSClosure + +
+
+ +
+
+ + JSObject + +
+
+ +
+
+ + JSValue​Decoder + +
+
+ +
+
+
+
+

Enumerations

+
+
+ + JSValue + +
+
+ +
+
+
+
+

Protocols

+
+
+ + Typed​Array​Element + +
+
+ +
+
+ + JSValue​Constructible + +
+
+ +
+
+ + JSValue​Convertible + +
+
+ +
+
+
+
+

Typealiases

+
+
+ + JSObject​Ref + +
+
+ +
+
+ + JSArray​Ref + +
+
+ +
+
+ + JSFunction​Ref + +
+
+ +
+
+
+
+

Functions

+
+
+ + _prepare_host_function_call(_:​) + +
+
+ +
+
+ + _cleanup_host_function_call(_:​) + +
+
+ +
+
+ + _call_host_function(_:​_:​_:​_:​) + +
+
+ +
+
+ + get​JSValue(this:​name:​) + +
+
+ +
+
+ + set​JSValue(this:​name:​value:​) + +
+
+ +
+
+ + get​JSValue(this:​index:​) + +
+
+ +
+
+ + set​JSValue(this:​index:​value:​) + +
+
+ +
+
+
+
+
+ + + + diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html new file mode 100644 index 000000000..70e9755f0 --- /dev/null +++ b/setJSValue(this:index:value:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - setJSValue(this:index:value:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +set​JSValue(this:​index:​value:​) +

+ +
public func setJSValue(this: JSObject, index: Int32, value: JSValue)
+
+
+ + + + diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html new file mode 100644 index 000000000..778323ff3 --- /dev/null +++ b/setJSValue(this:name:value:)/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - setJSValue(this:name:value:) + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+Function +set​JSValue(this:​name:​value:​) +

+ +
public func setJSValue(this: JSObject, name: String, value: JSValue)
+
+
+ + + + From 32b5acf8edcd35d692fefa0ac8aebe429e8bc944 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 15 Sep 2020 09:12:46 +0000 Subject: [PATCH 002/148] deploy: 0d2c9830112b5d9dc9e6301637d7e186e6d536f6 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 41 +---------- JSError/index.html | 78 +++++++++++++++++--- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 42 +++++------ JSObjectRef/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 86 +++++++++++++++++++++- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 34 ++++----- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- _call_host_function(_:_:_:_:)/index.html | 2 +- _cleanup_host_function_call(_:)/index.html | 2 +- _prepare_host_function_call(_:)/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 7 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 24 files changed, 235 insertions(+), 129 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index c1e61cce7..1482c5466 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0abf18baf..6f1b3312f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ded0f695b..15e9a159d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index aa423c2bc..206d0dd12 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index ed99ebc7c..66ac8e308 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -41,44 +41,7 @@

- - - - - - -%3 - - - -JSDate - - -JSDate - - - - - -Comparable - - -Comparable - - - - - -JSDate->Comparable - - - - - - +
@@ -358,7 +321,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index a5519cd49..284e8fc11 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,13 @@

JSError

-
public final class JSError
+
public final class JSError: Error
+
+

A wrapper around the JavaScript Error +class that +exposes its properties in a type-safe way.

+ +
@@ -61,20 +67,35 @@ - + +Error + + +Error + + + + + +JSError->Error + + + + + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible JSError->CustomStringConvertible - - + + @@ -85,6 +106,7 @@

Conforms To

CustomStringConvertible
+
Error
@@ -95,28 +117,64 @@

init(message:​)

public init(message: String)
+
+

Creates a new instance of the JavaScript Error class with a given message.

+ +

Properties

-
+
+

+ js​Object +

+
let jsObject: JSObject
+
+

The underlying JavaScript Error object.

+ +
+
+

message

var message: String
+
+

The error message of the underlying Error object.

+ +

name

var name: String
+
+

The name (usually corresponds to the name of the underlying class) of a given error.

+ +
+
+
+

+ stack +

+
var stack: String?
+
+

The JavaScript call trace that led to the creation of this error object.

+ +

description

var description: String
+
+

The textual representation of this error.

+ +
@@ -127,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 015240008..3709b4573 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -62,9 +62,9 @@

- + JSObject - + JSObject @@ -77,9 +77,9 @@ - + JSClosure - + JSClosure @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 33a14c175..a0d4c4768 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index c8460c87a..0a7099053 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -62,49 +62,49 @@

- + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - - -Equatable + + +Equatable - + JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ee1da9a25..7330c2c8b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d6460636e..134a41faa 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -71,7 +71,7 @@

- + JSTypedArray->JSValueConvertible @@ -86,7 +86,7 @@ - + JSTypedArray->ExpressibleByArrayLiteral @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 09f93f066..48fefbdd3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -41,7 +41,89 @@

- + + + + + + +%3 + + + +JSValue + + +JSValue + + + + + +ExpressibleByIntegerLiteral + + +ExpressibleByIntegerLiteral + + + + + +JSValue->ExpressibleByIntegerLiteral + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +JSValue->JSValueConvertible + + + + + +Equatable + + +Equatable + + + + + +JSValue->Equatable + + + + + +ExpressibleByStringLiteral + + +ExpressibleByStringLiteral + + + + + +JSValue->ExpressibleByStringLiteral + + + + + +
@@ -192,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index bea8dff61..5c5df031e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index fe2e02e29..97ea7b029 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,18 +61,18 @@

- - -TypedArrayElement - + + +JSTypedArray + -TypedArrayElement +JSTypedArray - - -TypedArrayElement->JSValueConvertible + + +JSTypedArray->JSValueConvertible @@ -91,18 +91,18 @@ - - -JSTypedArray - + + +TypedArrayElement + -JSTypedArray +TypedArrayElement - - -JSTypedArray->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index ec4a9c6bb..0e30ad8d5 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index eb3b2df32..e8faf4914 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/_call_host_function(_:_:_:_:)/index.html b/_call_host_function(_:_:_:_:)/index.html index 6e31e2862..d1ea3c08b 100644 --- a/_call_host_function(_:_:_:_:)/index.html +++ b/_call_host_function(_:_:_:_:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/_cleanup_host_function_call(_:)/index.html b/_cleanup_host_function_call(_:)/index.html index 6a829b9a0..c05738306 100644 --- a/_cleanup_host_function_call(_:)/index.html +++ b/_cleanup_host_function_call(_:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/_prepare_host_function_call(_:)/index.html b/_prepare_host_function_call(_:)/index.html index 4542560d4..130afa8d9 100644 --- a/_prepare_host_function_call(_:)/index.html +++ b/_prepare_host_function_call(_:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 85b446db0..5412e92b9 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 24a588250..1d5fed803 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 1a352d802..9588d0676 100644 --- a/index.html +++ b/index.html @@ -65,7 +65,10 @@

Classes

- +

A wrapper around the JavaScript Error +class that +exposes its properties in a type-safe way.

+
@@ -246,7 +249,7 @@

Functions

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 70e9755f0..8e5b4ce49 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 778323ff3..96f74467f 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 98170a48e26f72b72cb39ccb4fc367a798dfc89a Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 15 Sep 2020 09:14:46 +0000 Subject: [PATCH 003/148] deploy: f98bb11a6c9c5d479ad12d4fc64a070037eab42f --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 41 +++++++++++++++++- JSError/index.html | 6 +-- JSFunction/index.html | 14 +++--- JSFunctionRef/index.html | 2 +- JSObject/index.html | 8 ++-- JSObjectRef/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 48 ++++++++++----------- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 34 +++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 +++++------ _call_host_function(_:_:_:_:)/index.html | 50 ---------------------- _cleanup_host_function_call(_:)/index.html | 50 ---------------------- _prepare_host_function_call(_:)/index.html | 50 ---------------------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 26 +---------- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 24 files changed, 121 insertions(+), 258 deletions(-) delete mode 100644 _call_host_function(_:_:_:_:)/index.html delete mode 100644 _cleanup_host_function_call(_:)/index.html delete mode 100644 _prepare_host_function_call(_:)/index.html diff --git a/JSArray/index.html b/JSArray/index.html index 1482c5466..11dbc2344 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6f1b3312f..f5e046f83 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 15e9a159d..fba4b74dc 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 206d0dd12..9a8c1d563 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 66ac8e308..3bcdd5c54 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -41,7 +41,44 @@

- + + + + + + +%3 + + + +JSDate + + +JSDate + + + + + +Comparable + + +Comparable + + + + + +JSDate->Comparable + + + + + +
@@ -321,7 +358,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 284e8fc11..826c4f696 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->Error @@ -92,7 +92,7 @@ - + JSError->CustomStringConvertible @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3709b4573..b8df09d08 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -62,31 +62,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a0d4c4768..8ff5ffac5 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 0a7099053..012a36cd5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -71,7 +71,7 @@

- + JSObject->CustomStringConvertible @@ -86,7 +86,7 @@ - + JSObject->Equatable @@ -101,7 +101,7 @@ - + JSFunction->JSObject @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7330c2c8b..1d8356229 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 134a41faa..137cbab5c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 48fefbdd3..bab0b18c3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,33 +61,33 @@

- - -ExpressibleByIntegerLiteral - + + +JSValueConvertible + -ExpressibleByIntegerLiteral +JSValueConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByStringLiteral + -JSValueConvertible +ExpressibleByStringLiteral - - -JSValue->JSValueConvertible + + +JSValue->ExpressibleByStringLiteral @@ -101,23 +101,23 @@ - + JSValue->Equatable - + -ExpressibleByStringLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 5c5df031e..dcf027113 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 97ea7b029..6fd908bf5 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -71,38 +71,38 @@

- + JSTypedArray->JSValueConvertible - - -JSValue - + + +TypedArrayElement + -JSValue +TypedArrayElement - - -JSValue->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - + -TypedArrayElement->JSValueConvertible +JSValue->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 0e30ad8d5..34251fe7a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e8faf4914..b6433c579 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -TypedArrayElement->JSValueConvertible +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -TypedArrayElement->JSValueConstructible +TypedArrayElement->JSValueConvertible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/_call_host_function(_:_:_:_:)/index.html b/_call_host_function(_:_:_:_:)/index.html deleted file mode 100644 index d1ea3c08b..000000000 --- a/_call_host_function(_:_:_:_:)/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - JavaScriptKit - _call_host_function(_:_:_:_:) - - - -
- - - JavaScriptKit - - Documentation - - Beta -
- - - - - -
-
-

-Function -_call_host_function(_:​_:​_:​_:​) -

- -
@_cdecl("swjs_call_host_function") public func _call_host_function(_ hostFuncRef: JavaScriptHostFuncRef, _ argv: UnsafePointer<RawJSValue>, _ argc: Int32, _ callbackFuncRef: JavaScriptObjectRef)
-
-
- -
-

- Generated on using swift-doc 1.0.0-beta.4. -

-
- - diff --git a/_cleanup_host_function_call(_:)/index.html b/_cleanup_host_function_call(_:)/index.html deleted file mode 100644 index c05738306..000000000 --- a/_cleanup_host_function_call(_:)/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - JavaScriptKit - _cleanup_host_function_call(_:) - - - -
- - - JavaScriptKit - - Documentation - - Beta -
- - - - - -
-
-

-Function -_cleanup_host_function_call(_:​) -

- -
@_cdecl("swjs_cleanup_host_function_call") public func _cleanup_host_function_call(_ pointer: UnsafeMutableRawPointer)
-
-
- -
-

- Generated on using swift-doc 1.0.0-beta.4. -

-
- - diff --git a/_prepare_host_function_call(_:)/index.html b/_prepare_host_function_call(_:)/index.html deleted file mode 100644 index 130afa8d9..000000000 --- a/_prepare_host_function_call(_:)/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - JavaScriptKit - _prepare_host_function_call(_:) - - - -
- - - JavaScriptKit - - Documentation - - Beta -
- - - - - -
-
-

-Function -_prepare_host_function_call(_:​) -

- -
@_cdecl("swjs_prepare_host_function_call") public func _prepare_host_function_call(_ argc: Int32) -> UnsafeMutableRawPointer
-
-
- -
-

- Generated on using swift-doc 1.0.0-beta.4. -

-
- - diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 5412e92b9..ed0e4c5c5 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 1d5fed803..ae1b69eb2 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 9588d0676..21fb2ed97 100644 --- a/index.html +++ b/index.html @@ -187,30 +187,6 @@

Typealiases

Functions

- - _prepare_host_function_call(_:​) - -
-
- -
-
- - _cleanup_host_function_call(_:​) - -
-
- -
-
- - _call_host_function(_:​_:​_:​_:​) - -
-
- -
-
get​JSValue(this:​name:​) @@ -249,7 +225,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 8e5b4ce49..719c84455 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 96f74467f..d96e72fd7 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 5b2959114f88eac366bd96be33fd7266e8cfb89b Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 15 Sep 2020 09:15:33 +0000 Subject: [PATCH 004/148] deploy: 2af259d8a1e6a2c03f80180a7e4791a637cee9ec --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 4 +- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 42 ++++++++--------- JSObjectRef/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 60 ++++++++++++------------ JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 48 +++++++++---------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 4 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 21 files changed, 95 insertions(+), 95 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 11dbc2344..df8265c59 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f5e046f83..b29f3a6cb 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index fba4b74dc..85926d920 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 9a8c1d563..8908812e1 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 3bcdd5c54..5d481a10d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -358,7 +358,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 826c4f696..36c5a96f5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -39,7 +39,7 @@

public final class JSError: Error
-

A wrapper around the JavaScript Error +

A wrapper around the JavaScript Error class that exposes its properties in a type-safe way.

@@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b8df09d08..efc1a5e79 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 8ff5ffac5..f554ff1aa 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 012a36cd5..221ce2d67 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -62,49 +62,49 @@

- + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - - -Equatable + + +Equatable JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1d8356229..bb6a566be 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 137cbab5c..1d830128c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index bab0b18c3..c7012118e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,63 +61,63 @@

- - -JSValueConvertible - + + +Equatable + -JSValueConvertible +Equatable - - -JSValue->JSValueConvertible + + +JSValue->Equatable - - -ExpressibleByStringLiteral - + + +JSValueConvertible + -ExpressibleByStringLiteral +JSValueConvertible - + -JSValue->ExpressibleByStringLiteral +JSValue->JSValueConvertible - + -Equatable - +ExpressibleByIntegerLiteral + -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral - +ExpressibleByStringLiteral + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index dcf027113..2feeda8a8 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6fd908bf5..58849def8 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,48 +61,48 @@

- - -JSTypedArray - + + +JSValue + -JSTypedArray +JSValue - - -JSTypedArray->JSValueConvertible + + +JSValue->JSValueConvertible - - -TypedArrayElement - + + +JSTypedArray + -TypedArrayElement +JSTypedArray - + -TypedArrayElement->JSValueConvertible +JSTypedArray->JSValueConvertible - - -JSValue - + + +TypedArrayElement + -JSValue +TypedArrayElement - - -JSValue->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 34251fe7a..44011403f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b6433c579..4e4311aa4 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index ed0e4c5c5..b6a4018ce 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index ae1b69eb2..c622aa692 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 21fb2ed97..0a116ad5c 100644 --- a/index.html +++ b/index.html @@ -65,7 +65,7 @@

Classes

-

A wrapper around the JavaScript Error +

A wrapper around the JavaScript Error class that exposes its properties in a type-safe way.

@@ -225,7 +225,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 719c84455..62a0cbd1c 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index d96e72fd7..f9a8d1c51 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From a95a3ac50a86f00c3dd1a13668ace9e72429fcf8 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 15 Sep 2020 09:16:30 +0000 Subject: [PATCH 005/148] deploy: 8c348a3efe6c61b5506926ee67153a3ea0990355 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 32 ++++++------- JSFunction/index.html | 6 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +-- JSObjectRef/index.html | 2 +- JSTypedArray/index.html | 30 ++++++------ JSValue/index.html | 60 ++++++++++++------------ JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 8 ++-- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 21 files changed, 86 insertions(+), 86 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index df8265c59..bb5c627b9 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b29f3a6cb..a40b5f03b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 85926d920..ce52d6eb3 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8908812e1..92ec43c91 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 5d481a10d..19e03fb38 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -358,7 +358,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 36c5a96f5..af38ed044 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -162,7 +162,7 @@

var stack: String?
-

The JavaScript call trace that led to the creation of this error object.

+

The JavaScript call stack that led to the creation of this error object.

@@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index efc1a5e79..3692e3063 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -71,7 +71,7 @@

- + JSFunction->JSObject @@ -86,7 +86,7 @@ - + JSClosure->JSFunction @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f554ff1aa..4af7298b5 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 221ce2d67..e55dcada5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -71,7 +71,7 @@

- + JSObject->CustomStringConvertible @@ -86,7 +86,7 @@ - + JSObject->Equatable @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index bb6a566be..63c81b0d2 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 1d830128c..b3016248b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -61,33 +61,33 @@

- - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - + -JSTypedArray->JSValueConvertible +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSValueConvertible @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index c7012118e..30a6e2d8d 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,63 +61,63 @@

- - -Equatable - + + +JSValueConvertible + -Equatable +JSValueConvertible - + -JSValue->Equatable +JSValue->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByStringLiteral + -JSValueConvertible +ExpressibleByStringLiteral - - -JSValue->JSValueConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral - +Equatable + -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 2feeda8a8..de30c3c36 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 58849def8..64ec5f918 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -71,7 +71,7 @@

- + JSValue->JSValueConvertible @@ -86,7 +86,7 @@ - + JSTypedArray->JSValueConvertible @@ -101,7 +101,7 @@ - + TypedArrayElement->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 44011403f..e31ad4b32 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4e4311aa4..dc730e71d 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index b6a4018ce..bcfd086cc 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index c622aa692..04b39daad 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 0a116ad5c..2de1dbce4 100644 --- a/index.html +++ b/index.html @@ -225,7 +225,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 62a0cbd1c..b88b89522 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index f9a8d1c51..dfd504c48 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From ab9acc93d2a24f7b396da3d5335cb9b585688754 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 15 Sep 2020 11:42:22 +0000 Subject: [PATCH 006/148] deploy: f97dca1b5a74a3dfbaf81b2fbf4632caeb50f235 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 6 +- JSFunction/index.html | 14 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 +++--- JSObjectRef/index.html | 2 +- JSTimer/index.html | 128 +++++++++++++++++++++++ JSTypedArray/index.html | 2 +- JSValue/index.html | 46 ++++---- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 36 +++---- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++--- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 21 +++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 241 insertions(+), 94 deletions(-) create mode 100644 JSTimer/index.html diff --git a/JSArray/index.html b/JSArray/index.html index bb5c627b9..4911694a2 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index a40b5f03b..1d1803ab1 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ce52d6eb3..e46d4b938 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 92ec43c91..d757afb5c 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 19e03fb38..d4922534e 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -358,7 +358,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index af38ed044..d00b1c947 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->CustomStringConvertible @@ -92,7 +92,7 @@ - + JSError->Error @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3692e3063..bf07382d0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -62,31 +62,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4af7298b5..ef7851a8c 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index e55dcada5..08d0df4d5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -61,33 +61,33 @@

- + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible @@ -101,7 +101,7 @@
- + JSFunction->JSObject @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 63c81b0d2..e68f30b14 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html new file mode 100644 index 000000000..30712f4e5 --- /dev/null +++ b/JSTimer/index.html @@ -0,0 +1,128 @@ + + + + + + JavaScriptKit - JSTimer + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSTimer +

+ +
public final class JSTimer
+
+

This timer type hides setInterval +/ clearInterval and +setTimeout +/ clearTimeout +pairs of calls for you. It intentionally doesn't match the JavaScript API, as a special care is +needed to hold a reference to the timer closure and to call JSClosure.release() on it when the +timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay +valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the +only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero, +either by storing the timer in an optional property and assigning nil to it or by deallocating the +object that owns it for invalidation.

+ +
+ +
+

Initializers

+ +
+

+ init(milliseconds​Delay:​is​Repeating:​callback:​) +

+
public init(millisecondsDelay: Double, isRepeating: Bool = false, callback: @escaping () -> ())
+
+

Creates a new timer instance that calls setInterval or setTimeout JavaScript functions for you +under the hood.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
milliseconds​DelayDouble

the amount of milliseconds before the callback closure is executed.

+
is​RepeatingBool

when true the callback closure is executed repeatedly at given millisecondsDelay intervals indefinitely until the timer is deallocated.

+
callback@escaping () -> ()

the closure to be executed after a given millisecondsDelay interval.

+
+
+
+
+

Properties

+ +
+

+ is​Repeating +

+
let isRepeating: Bool
+
+

Indicates whether this timer instance calls its callback repeatedly at a given delay.

+ +
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b3016248b..d145a66f4 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 30a6e2d8d..131e707aa 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,18 +61,18 @@

- - -JSValueConvertible - + + +ExpressibleByIntegerLiteral + -JSValueConvertible +ExpressibleByIntegerLiteral - - -JSValue->JSValueConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -91,33 +91,33 @@ - - -Equatable - + + +JSValueConvertible + -Equatable +JSValueConvertible - - -JSValue->Equatable + + +JSValue->JSValueConvertible - + -ExpressibleByIntegerLiteral - +Equatable + -ExpressibleByIntegerLiteral +Equatable - + -JSValue->ExpressibleByIntegerLiteral +JSValue->Equatable @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index de30c3c36..f4f0265d9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 64ec5f918..a1397e3d6 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,18 +61,18 @@

- - -JSValue - + + +TypedArrayElement + -JSValue +TypedArrayElement - - -JSValue->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -86,23 +86,23 @@
- + JSTypedArray->JSValueConvertible - - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - - -TypedArrayElement->JSValueConvertible + + +JSValue->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index e31ad4b32..b93ea613f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index dc730e71d..b9f751097 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -TypedArrayElement->JSValueConstructible +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -TypedArrayElement->JSValueConvertible +TypedArrayElement->JSValueConstructible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index bcfd086cc..ac9f43230 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 04b39daad..2138a5a35 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 2de1dbce4..520e131dd 100644 --- a/index.html +++ b/index.html @@ -69,6 +69,25 @@

Classes

class that exposes its properties in a type-safe way.

+

+
+ + JSTimer + +
+
+

This timer type hides setInterval +/ clearInterval and +setTimeout +/ clearTimeout +pairs of calls for you. It intentionally doesn't match the JavaScript API, as a special care is +needed to hold a reference to the timer closure and to call JSClosure.release() on it when the +timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay +valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the +only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero, +either by storing the timer in an optional property and assigning nil to it or by deallocating the +object that owns it for invalidation.

+
@@ -225,7 +244,7 @@

Functions

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index b88b89522..a3fa3a247 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index dfd504c48..31f5b6629 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 691205a899370e3edf9d11ebaf24f37ed9313886 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 15 Sep 2020 13:14:23 +0000 Subject: [PATCH 007/148] deploy: 6ce7e779bca7eb640e81787372e2edb4c7b3adab --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 75 ++++++++++++++++++------ JSError/index.html | 26 ++++---- JSFunction/index.html | 10 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 +++++----- JSObjectRef/index.html | 2 +- JSTimer/index.html | 12 ++-- JSTypedArray/index.html | 34 +++++------ JSValue/index.html | 62 ++++++++++---------- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 48 +++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 21 ++++--- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 209 insertions(+), 163 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 4911694a2..9be7511e5 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 1d1803ab1..3e5b2dedd 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e46d4b938..50696aff6 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d757afb5c..e93525caf 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index d4922534e..866d9192b 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -26,7 +26,7 @@ @@ -38,6 +38,16 @@

public final class JSDate
+
+

A wrapper around the JavaScript Date +class that +exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example +getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches +in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS +implementations are not exposed in a type-safe manner, you should access the underlying jsObject +property if you need those.

+ +
@@ -95,6 +105,11 @@

init(milliseconds​Since​Epoch:​)

public init(millisecondsSinceEpoch: Double? = nil)
+
+

Creates a new instance of the JavaScript Date class with a given amount of milliseconds +that passed since midnight 01 January 1970 UTC.

+ +

@@ -111,11 +126,15 @@

Properties

-
+

- ref + js​Object

-
let ref: JSObject
+
let jsObject: JSObject
+
+

The underlying JavaScript Date object.

+ +

@@ -133,7 +152,7 @@

var month: Int
-

Month of this date in 0–11 range in local time zone

+

Month of this date in 0–11 range in local time zone.

@@ -203,7 +222,7 @@

var utcFullYear: Int
-

Year of this date in the UTC time zone

+

Year of this date in the UTC time zone.

@@ -213,7 +232,7 @@

var utcMonth: Int
-

Month of this date in 0–11 range in the UTC time zone

+

Month of this date in 0–11 range in the UTC time zone.

@@ -223,7 +242,7 @@

var utcDate: Int
-

The day of the month in 1..31 range in the UTC time zone

+

The day of the month in 1..31 range in the UTC time zone.

@@ -233,7 +252,7 @@

var utcDay: Int
-

The day of the week in 0..6 range in the UTC time zone

+

The day of the week in 0..6 range in the UTC time zone.

@@ -243,7 +262,7 @@

var utcHours: Int
-

The amount of hours in this day from 0..23 range in the UTC time zone

+

The amount of hours in this day from 0..23 range in the UTC time zone.

@@ -253,7 +272,7 @@

var utcMinutes: Int
-

The amount of minutes in this hours from 0..59 range in the UTC time zone

+

The amount of minutes in this hours from 0..59 range in the UTC time zone.

@@ -263,7 +282,7 @@

var utcSeconds: Int
-

The amount of seconds in this minute from 0..59 range in the UTC time zone

+

The amount of seconds in this minute from 0..59 range in the UTC time zone.

@@ -273,7 +292,7 @@

var utcMilliseconds: Int
-

The amount of milliseconds in this second 0..999 range in the UTC time zone

+

The amount of milliseconds in this second 0..999 range in the UTC time zone.

@@ -283,7 +302,7 @@

var timezoneOffset: Int
-

Offset in minutes between the local time zone and UTC

+

Offset in minutes between the local time zone and UTC.

@@ -296,24 +315,44 @@

to​ISOString()

public func toISOString() -> String
+
+

Returns a string conforming to ISO 8601 that contains date and time, e.g. +"2020-09-15T08:56:54.811Z".

+ +

to​Locale​Date​String()

public func toLocaleDateString() -> String
+
+

Returns a string with date parts in a format defined by user's locale, e.g. "9/15/2020".

+ +

to​Locale​Time​String()

public func toLocaleTimeString() -> String
+
+

Returns a string with time parts in a format defined by user's locale, e.g. "10:04:14".

+ +

to​UTCString()

public func toUTCString() -> String
+
+

Returns a string formatted according to +rfc7231 and modified according to +ecma-262, +e.g. Tue, 15 Sep 2020 09:04:40 GMT.

+ +

@@ -321,8 +360,8 @@

public static func now() -> Double
-

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring leap -seconds

+

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring +leap seconds.

@@ -333,7 +372,7 @@

public func valueOf() -> Double

Number of milliseconds since midnight 01 January 1970 UTC to the given date ignoring leap -seconds

+seconds.

@@ -358,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index d00b1c947..9e7f1d4dd 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index bf07382d0..6da26f4e6 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -62,9 +62,9 @@

- + JSObject - + JSObject @@ -77,9 +77,9 @@ - + JSClosure - + JSClosure @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ef7851a8c..1ee005565 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 08d0df4d5..15902c1c2 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -61,33 +61,33 @@

- + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e68f30b14..ca26811e2 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 30712f4e5..9baf2e97d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -39,17 +39,17 @@

public final class JSTimer
-

This timer type hides setInterval +

This timer is an abstraction over setInterval / clearInterval and setTimeout / clearTimeout -pairs of calls for you. It intentionally doesn't match the JavaScript API, as a special care is +JavaScript functions. It intentionally doesn't match the JavaScript API, as a special care is needed to hold a reference to the timer closure and to call JSClosure.release() on it when the timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the -only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero, -either by storing the timer in an optional property and assigning nil to it or by deallocating the -object that owns it for invalidation.

+only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero. +For invalidation you should either store the timer in an optional property and assign nil to it, +or deallocate the object that owns the timer.

@@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d145a66f4..75cb26415 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -61,33 +61,33 @@

- - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 131e707aa..cff17d464 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,63 +61,63 @@

- - -ExpressibleByIntegerLiteral - + + +JSValueConvertible + -ExpressibleByIntegerLiteral +JSValueConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueConvertible - + -ExpressibleByStringLiteral - +Equatable + -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - - -JSValueConvertible - + + +ExpressibleByIntegerLiteral + -JSValueConvertible +ExpressibleByIntegerLiteral - - -JSValue->JSValueConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable - +ExpressibleByStringLiteral + -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f4f0265d9..f77994a27 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index a1397e3d6..ed62ed125 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,48 +61,48 @@

- - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - + -TypedArrayElement->JSValueConvertible +JSValue->JSValueConvertible - - -JSTypedArray - + + +TypedArrayElement + -JSTypedArray +TypedArrayElement - - -JSTypedArray->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -JSValue - + + +JSTypedArray + -JSValue +JSTypedArray - - -JSValue->JSValueConvertible + + +JSTypedArray->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index b93ea613f..da050ce9e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b9f751097..6fbadde89 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index ac9f43230..f02308da5 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 2138a5a35..402a82a6d 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 520e131dd..2df19fff7 100644 --- a/index.html +++ b/index.html @@ -57,7 +57,14 @@

Classes

- +

A wrapper around the JavaScript Date +class that +exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example +getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches +in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS +implementations are not exposed in a type-safe manner, you should access the underlying jsObject +property if you need those.

+
@@ -76,17 +83,17 @@

Classes

-

This timer type hides setInterval +

This timer is an abstraction over setInterval / clearInterval and setTimeout / clearTimeout -pairs of calls for you. It intentionally doesn't match the JavaScript API, as a special care is +JavaScript functions. It intentionally doesn't match the JavaScript API, as a special care is needed to hold a reference to the timer closure and to call JSClosure.release() on it when the timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the -only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero, -either by storing the timer in an optional property and assigning nil to it or by deallocating the -object that owns it for invalidation.

+only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero. +For invalidation you should either store the timer in an optional property and assign nil to it, +or deallocate the object that owns the timer.

@@ -244,7 +251,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index a3fa3a247..e44f7ae74 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 31f5b6629..2d950dda2 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 5d42d48d6ee27f6778fb6ee67e842acf6ac61d29 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Tue, 15 Sep 2020 14:10:31 +0000 Subject: [PATCH 008/148] deploy: 376ef991924e7d70cebcc52b8e3752f9306d27e9 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 6 +-- JSFunction/index.html | 10 ++--- JSFunctionRef/index.html | 2 +- JSObject/index.html | 50 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++++++-------- JSValue/index.html | 48 +++++++++++------------ JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 50 ++++++++++++------------ JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 117 insertions(+), 117 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 9be7511e5..f8c0d9d2d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3e5b2dedd..142f8e812 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 50696aff6..a188102ae 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -110,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e93525caf..073ad58a0 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 866d9192b..8a364e261 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 9e7f1d4dd..302b4fcbb 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->Error @@ -92,7 +92,7 @@ - + JSError->CustomStringConvertible @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 6da26f4e6..a95c97a74 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -62,9 +62,9 @@

- + JSObject - + JSObject @@ -77,9 +77,9 @@ - + JSClosure - + JSClosure @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1ee005565..523e37bb1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 15902c1c2..fa2086782 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -61,50 +61,50 @@

- + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable - - -Equatable - - -Equatable + + +CustomStringConvertible + + +CustomStringConvertible - - -JSObject->Equatable - - + + +JSObject->CustomStringConvertible + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ca26811e2..660318b7b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 9baf2e97d..8e04bd22a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 75cb26415..5a38ac622 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -61,33 +61,33 @@

- - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSValueConvertible @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index cff17d464..070f21b52 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,48 +61,48 @@

- - -JSValueConvertible - + + +Equatable + -JSValueConvertible +Equatable - + -JSValue->JSValueConvertible +JSValue->Equatable - + -Equatable - +ExpressibleByIntegerLiteral + -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - - -ExpressibleByIntegerLiteral - + + +JSValueConvertible + -ExpressibleByIntegerLiteral +JSValueConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueConvertible @@ -116,7 +116,7 @@ - + JSValue->ExpressibleByStringLiteral @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f77994a27..039695a84 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ed62ed125..e64bca9e7 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,48 +61,48 @@

- - -JSValue - + + +TypedArrayElement + -JSValue +TypedArrayElement - - -JSValue->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -TypedArrayElement - + + +JSTypedArray + -TypedArrayElement +JSTypedArray - - -TypedArrayElement->JSValueConvertible + + +JSTypedArray->JSValueConvertible - - -JSTypedArray - + + +JSValue + -JSTypedArray +JSValue - - -JSTypedArray->JSValueConvertible + + +JSValue->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index da050ce9e..489859017 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 6fbadde89..707520758 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -71,7 +71,7 @@

- + TypedArrayElement->JSValueConstructible @@ -86,7 +86,7 @@ - + TypedArrayElement->JSValueConvertible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index f02308da5..406a2f2e1 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 402a82a6d..894bf14c0 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 2df19fff7..27f18760e 100644 --- a/index.html +++ b/index.html @@ -251,7 +251,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index e44f7ae74..307bef358 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 2d950dda2..cf99f15cf 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From f235bb39dacf3c5d3a857e085ab208b4e2142d50 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 16 Sep 2020 07:00:44 +0000 Subject: [PATCH 009/148] deploy: 51331c608c9f4ba86dbdb64feb2514a0481cef7e --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 41 +--------------- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 30 ++++++------ JSFunction/index.html | 6 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 +++++----- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 30 ++++++------ JSValue/index.html | 60 ++++++++++++------------ JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 6 +-- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 98 insertions(+), 135 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index f8c0d9d2d..12d0c8223 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 142f8e812..c9455f1bf 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a188102ae..798dc8a20 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,44 +41,7 @@

- - - - - - -%3 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - - -IteratorProtocol - - - - - -JSArray.Iterator->IteratorProtocol - - - - - - +
@@ -110,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 073ad58a0..b66ffe070 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -122,7 +122,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 8a364e261..b021439f6 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 302b4fcbb..537b67d1a 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index a95c97a74..ba17972e8 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -71,7 +71,7 @@

- + JSFunction->JSObject @@ -86,7 +86,7 @@ - + JSClosure->JSFunction @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 523e37bb1..d099a58a5 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index fa2086782..263173e33 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -77,34 +77,34 @@

- + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -169,7 +169,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 660318b7b..11d33f6e9 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 8e04bd22a..0f8ee5936 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5a38ac622..828442de6 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -61,33 +61,33 @@

- - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - + -JSTypedArray->JSValueConvertible +JSTypedArray->ExpressibleByArrayLiteral @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 070f21b52..81d2ff0cd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -61,63 +61,63 @@

- + -Equatable - +ExpressibleByIntegerLiteral + -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral - +ExpressibleByStringLiteral + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - - -JSValueConvertible - + + +Equatable + -JSValueConvertible +Equatable - - -JSValue->JSValueConvertible + + +JSValue->Equatable - - -ExpressibleByStringLiteral - + + +JSValueConvertible + -ExpressibleByStringLiteral +JSValueConvertible - + -JSValue->ExpressibleByStringLiteral +JSValue->JSValueConvertible @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 039695a84..5a63ceb2d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index e64bca9e7..31a182238 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -71,7 +71,7 @@

- + TypedArrayElement->JSValueConvertible @@ -86,7 +86,7 @@ - + JSTypedArray->JSValueConvertible @@ -140,7 +140,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 489859017..8ef3d6737 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 707520758..74263f359 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -71,7 +71,7 @@

- + TypedArrayElement->JSValueConstructible @@ -86,7 +86,7 @@ - + TypedArrayElement->JSValueConvertible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 406a2f2e1..edc645f43 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 894bf14c0..14fcaff80 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 27f18760e..dd13217b9 100644 --- a/index.html +++ b/index.html @@ -251,7 +251,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 307bef358..0fb5425cc 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index cf99f15cf..bb445a3c6 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 502e47b0dda45756b3d7b58a8c7eddcc81844941 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 16 Sep 2020 11:29:03 +0000 Subject: [PATCH 010/148] deploy: 2eade6fb2c7f9676543c46262a1889ea36eac3d1 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 41 ++++++- JSClosure/index.html | 60 ++++++++++- JSDate/index.html | 2 +- JSError/index.html | 26 ++--- JSFunction/index.html | 129 ++++++++++++++++++++--- JSFunctionRef/index.html | 2 +- JSObject/index.html | 84 ++++++++++++++- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++--- JSValue/index.html | 112 +++++++++++++++----- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 51 ++++----- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 21 +++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 470 insertions(+), 118 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 12d0c8223..b3451eb26 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -180,7 +180,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index c9455f1bf..2261f3ab8 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 798dc8a20..5c70a39c9 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,7 +41,44 @@

- + + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + + +IteratorProtocol + + + + + +JSArray.Iterator->IteratorProtocol + + + + + +
@@ -73,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b66ffe070..a416e7876 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -38,6 +38,28 @@

public class JSClosure: JSFunction
+
+

JSClosure represents a JavaScript function the body of which is written in Swift. +This type can be passed as a callback handler to JavaScript functions. +Note that the lifetime of JSClosure should be managed by users manually +due to GC boundary between Swift and JavaScript. +For further discussion, see also swiftwasm/JavaScriptKit #33

+ +
+
+

e.g.

+ +
let eventListenter = JSClosure { _ in
+    ...
+    return JSValue.undefined
+}
+
+button.addEventListener!("click", JSValue.function(eventListenter))
+...
+button.removeEventListener!("click", JSValue.function(eventListenter))
+eventListenter.release()
+
+
@@ -85,7 +107,9 @@

Superclass

JSFunction
-
+

JSFunction represents a function in JavaScript and supports new object instantiation. +This type can be callable as a function using callAsFunction.

+
@@ -96,12 +120,39 @@

init(_:​)

public init(_ body: @escaping ([JSValue]) -> JSValue)
+
+

Instantiate a new JSClosure with given function body.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
body@escaping ([JSValue]) -> JSValue

The body of this function.

+

init(_:​)

convenience public init(_ body: @escaping ([JSValue]) -> ())
+
+

A convenience initializer which assumes that the given body function returns JSValue.undefined

+ +
@@ -112,6 +163,11 @@

release()

public func release()
+
+

Release this function resource. +After calling release, calling this function from JavaScript will fail.

+ +
@@ -122,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index b021439f6..a4bcb057d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 537b67d1a..9c2196192 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ba17972e8..74ebb3bb6 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -26,7 +26,7 @@ @@ -38,6 +38,19 @@

public class JSFunction: JSObject
+
+

JSFunction represents a function in JavaScript and supports new object instantiation. +This type can be callable as a function using callAsFunction.

+ +
+
+

e.g.

+ +
let alert: JSFunction = JSObject.global.alert.function!
+// Call `JSFunction` as a function
+alert("Hello, world")
+
+
@@ -62,9 +75,9 @@ - + JSObject - + JSObject @@ -77,9 +90,9 @@ - + JSClosure - + JSClosure @@ -100,12 +113,20 @@

Superclass

JSObject
-
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+

Subclasses

JSClosure
-
+

JSClosure represents a JavaScript function the body of which is written in Swift. +This type can be passed as a callback handler to JavaScript functions. +Note that the lifetime of JSClosure should be managed by users manually +due to GC boundary between Swift and JavaScript. +For further discussion, see also swiftwasm/JavaScriptKit #33

+
@@ -116,24 +137,106 @@

call​AsFunction(this:​arguments:​)

@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [JSValueConvertible]) -> JSValue
+
+

Call this function with given arguments and binding given this as context.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
thisJSObject?

The value to be passed as the this parameter to this function.

+
arguments[JSValue​Convertible]

Arguments to be passed to this function.

+
+

Returns

+

The result of this call.

+

call​AsFunction(this:​_:​)

@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: JSValueConvertible) -> JSValue
+
+

A variadic arguments version of callAsFunction.

+
-
-

- new(_:​) -

-
public func new(_ arguments: JSValueConvertible) -> JSObject

new(arguments:​)

public func new(arguments: [JSValueConvertible]) -> JSObject
+
+

Instantiate an object from this function as a constructor.

+ +
+
+

Guaranteed to return an object because either:

+ +
    +
  • +

    a. the constructor explicitly returns an object, or

    +
  • +
  • +

    b. the constructor returns nothing, which causes JS to return the this value, or

    +
  • +
  • +

    c. the constructor returns undefined, null or a non-object, in which case JS also returns this.

    +
  • +
+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
arguments[JSValue​Convertible]

Arguments to be passed to this constructor function.

+
+

Returns

+

A new instance of this constructor.

+ +
+
+

+ new(_:​) +

+
public func new(_ arguments: JSValueConvertible) -> JSObject
+
+

A variadic arguments version of new.

+ +

@@ -156,7 +259,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index d099a58a5..125ee81c6 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 263173e33..9ea6c75f9 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -38,6 +38,24 @@

@dynamicMemberLookup public class JSObject: Equatable
+
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+ +
+
+

And this object supports to call a member method of the object.

+ +

e.g.

+ +
let document = JSObject.global.document.object!
+let divElement = document.createElement!("div")
+
+

The lifetime of this object is managed by the JavaScript and Swift runtime bridge library with +reference counting system.

+ +
@@ -115,7 +133,9 @@

Subclasses

JSFunction
-
+

JSFunction represents a function in JavaScript and supports new object instantiation. +This type can be callable as a function using callAsFunction.

+

Conforms To

@@ -131,6 +151,11 @@

global

let global
+
+

A JSObject of the global scope object. +This allows access to the global properties and global names by accessing the JSObject returned.

+ +

@@ -147,12 +172,67 @@

is​Instance​Of(_:​)

public func isInstanceOf(_ constructor: JSFunction) -> Bool
+
+

Return true if this object is an instance of the constructor. Return false, if not.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
constructorJSFunction

The constructor function to check.

+
+

Returns

+

The result of instanceof in JavaScript environment.

+

==(lhs:​rhs:​)

public static func ==(lhs: JSObject, rhs: JSObject) -> Bool
+
+

Returns a Boolean value indicating whether two values point to same objects.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
lhsJSObject

A object to compare.

+
rhsJSObject

Another object to compare.

+

@@ -169,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 11d33f6e9..a275bff3c 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 0f8ee5936..a046c9342 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 828442de6..6b80f2f32 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -61,33 +61,33 @@

- - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSValueConvertible @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 81d2ff0cd..e50cd152a 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -38,6 +38,10 @@

public enum JSValue
+
+

JSValue represents a value in JavaScript.

+ +
@@ -61,18 +65,18 @@ - + -ExpressibleByIntegerLiteral - +Equatable + -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable @@ -86,23 +90,23 @@ - + JSValue->ExpressibleByStringLiteral - + -Equatable - +ExpressibleByIntegerLiteral + -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -116,7 +120,7 @@ - + JSValue->JSValueConvertible @@ -212,42 +216,77 @@

boolean

var boolean: Bool?
+
+

Returns the Bool value of this JS value if its type is boolean. +If not, returns nil.

+ +

string

var string: String?
+
+

Returns the String value of this JS value if the type is string. +If not, returns nil.

+ +

number

var number: Double?
+
+

Returns the Double value of this JS value if the type is number. +If not, returns nil.

+ +

object

var object: JSObject?
+
+

Returns the JSObject of this JS value if its type is object. +If not, returns nil.

+ +
+
+
+

+ function +

+
var function: JSFunction?
+
+

Returns the JSFunction of this JS value if its type is function. +If not, returns nil.

+ +

is​Null

var isNull: Bool
+
+

Returns the true if this JS value is null. +If not, returns false.

+ +

is​Undefined

var isUndefined: Bool
+
+

Returns the true if this JS value is undefined. +If not, returns false.

+
-
-

- function -

-
var function: JSFunction?
@@ -257,7 +296,32 @@

Methods

function(_:​)

-
public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue
+
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.") public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue
+
+

Deprecated: Please create JSClosure directly and manage its lifetime manually.

+ +
+
+

Migrate this usage

+ +
button.addEventListener!("click", JSValue.function { _ in
+    ...
+    return JSValue.undefined
+})
+
+

into below code.

+ +
let eventListenter = JSClosure { _ in
+    ...
+    return JSValue.undefined
+}
+
+button.addEventListener!("click", JSValue.function(eventListenter))
+...
+button.removeEventListener!("click", JSValue.function(eventListenter))
+eventListenter.release()
+
+

@@ -274,7 +338,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 5a63ceb2d..23d37e9a3 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -106,7 +106,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 31a182238..12cc05a1e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -61,48 +61,48 @@

- - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - - -TypedArrayElement->JSValueConvertible + + +JSValue->JSValueConvertible - - -JSTypedArray - + + +TypedArrayElement + -JSTypedArray +TypedArrayElement - - -JSTypedArray->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -JSValue - + + +JSTypedArray + -JSValue +JSTypedArray - + -JSValue->JSValueConvertible +JSTypedArray->JSValueConvertible @@ -119,7 +119,8 @@

Types Conforming to JSValue​Convertible

JSTypedArray
JSValue
-
+

JSValue represents a value in JavaScript.

+

@@ -140,7 +141,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 8ef3d6737..8ed764482 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 74263f359..a7c534174 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -71,7 +71,7 @@

- + TypedArrayElement->JSValueConstructible @@ -86,7 +86,7 @@ - + TypedArrayElement->JSValueConvertible @@ -129,7 +129,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index edc645f43..cb7f6b5fa 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 14fcaff80..e1d40604b 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index dd13217b9..9f877afd2 100644 --- a/index.html +++ b/index.html @@ -110,7 +110,9 @@

Classes

- +

JSFunction represents a function in JavaScript and supports new object instantiation. +This type can be callable as a function using callAsFunction.

+
@@ -118,7 +120,12 @@

Classes

- +

JSClosure represents a JavaScript function the body of which is written in Swift. +This type can be passed as a callback handler to JavaScript functions. +Note that the lifetime of JSClosure should be managed by users manually +due to GC boundary between Swift and JavaScript. +For further discussion, see also swiftwasm/JavaScriptKit #33

+
@@ -126,7 +133,10 @@

Classes

- +

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
@@ -147,7 +157,8 @@

Enumerations

- +

JSValue represents a value in JavaScript.

+
@@ -251,7 +262,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 0fb5425cc..1a94dcefe 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index bb445a3c6..226a5e56d 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 64904ef73fe2610b08ce0408210f1a794ce2bc99 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 16 Sep 2020 14:43:09 +0000 Subject: [PATCH 011/148] deploy: 6ff2941a821b5870450ad4ae5cfa1cf4688a15a1 --- JSArray/index.html | 31 +++++- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 30 +++--- JSFunction/index.html | 14 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 +++--- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 114 +++++++++++++++++++---- JSValue/index.html | 37 ++++---- JSValueConstructible/index.html | 33 ++++++- JSValueConvertible/index.html | 46 +++++---- JSValueDecoder/index.html | 39 +++++++- TypedArrayElement/index.html | 36 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 19 ++-- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 325 insertions(+), 126 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index b3451eb26..d65165872 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -38,6 +38,11 @@

public class JSArray
+
+

A wrapper around the JavaScript Array class +that exposes its properties in a type-safe and Swifty way.

+ +
@@ -110,6 +115,30 @@

init?(_:​)

public init?(_ ref: JSObject)
+
+

Construct a JSArray from Array JSObject. +Return nil if the object is not an Array.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
object

A JSObject expected to be a JavaScript Array

+
@@ -180,7 +209,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 2261f3ab8..67b494dca 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5c70a39c9..688601a17 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -85,7 +85,9 @@

Member Of

JSArray
-
+

A wrapper around the JavaScript Array class +that exposes its properties in a type-safe and Swifty way.

+

Conforms To

@@ -110,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index a416e7876..1141293e5 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index a4bcb057d..e84cc00f9 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 9c2196192..759b66a2c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 74ebb3bb6..705299426 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -259,7 +259,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 125ee81c6..632ad42c5 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 9ea6c75f9..514b7c93d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,33 +79,33 @@

- + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a275bff3c..540baf727 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a046c9342..39547e7f3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6b80f2f32..b5cacc182 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -38,6 +38,11 @@

public class JSTypedArray<Element>: JSValueConvertible, ExpressibleByArrayLiteral where Element: TypedArrayElement
+
+

A wrapper around the JavaScript TypedArray class +that exposes its properties in a type-safe and Swifty way.

+ +
@@ -61,33 +66,33 @@ - - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - + -JSTypedArray->JSValueConvertible +JSTypedArray->ExpressibleByArrayLiteral @@ -100,7 +105,8 @@

Conforms To

JSValueConvertible
-
+

Confirming types are convertible to JSValue.

+
ExpressibleByArrayLiteral
@@ -112,12 +118,59 @@

init?(_:​)

public init?(_ object: JSObject)
+
+

Construct a JSTypedArray from TypedArray JSObject. +Return nil if the object is not TypedArray.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
objectJSObject

A JSObject expected to be TypedArray

+

init(length:​)

public convenience init(length: Int)
+
+

Initialize a new instance of TypedArray in JavaScript environment with given length zero value.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
lengthInt

The length of elements that will be allocated.

+

@@ -130,12 +183,39 @@

init(_:​)

public convenience init(_ array: [Element])
+
+

Initialize a new instance of TypedArray in JavaScript environment with given elements.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
array[Element]

The array that will be copied to create a new instance of TypedArray

+

init(_:​)

-
public convenience init(_ stride: StrideTo<Element>) where Element: Strideable
+
public convenience init<S: Sequence>(_ sequence: S)
+
+

Convenience initializer for Sequence.

+ +
@@ -156,7 +236,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index e50cd152a..7de03415f 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -75,7 +75,7 @@

- + JSValue->Equatable @@ -95,33 +95,33 @@ - - -ExpressibleByIntegerLiteral - + + +JSValueConvertible + -ExpressibleByIntegerLiteral +JSValueConvertible - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByIntegerLiteral + -JSValueConvertible +ExpressibleByIntegerLiteral - - -JSValue->JSValueConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -134,7 +134,8 @@

Conforms To

JSValueConvertible
-
+

Confirming types are convertible to JSValue.

+
Equatable
ExpressibleByIntegerLiteral
ExpressibleByStringLiteral
@@ -338,7 +339,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 23d37e9a3..9b268b32d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -38,6 +38,10 @@

public protocol JSValueConstructible
+
+

Types conforming to this protocol can be constructed from JSValue.

+ +
@@ -99,6 +103,33 @@

construct(from:​)

static func construct(from value: JSValue) -> Self?
+
+

Construct an instance of Self, if possible, from the given JSValue. +Return nil if fail to construct.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
valueJSValue

The JSValue to decode

+
+

Returns

+

An instance of Self, if one was successfully constructed from the value.

+
@@ -106,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 12cc05a1e..cd90067a5 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -38,6 +38,10 @@

public protocol JSValueConvertible
+
+

Confirming types are convertible to JSValue.

+ +
@@ -61,18 +65,18 @@ - - -JSValue - + + +JSTypedArray + -JSValue +JSTypedArray - - -JSValue->JSValueConvertible + + +JSTypedArray->JSValueConvertible @@ -86,23 +90,23 @@ - + TypedArrayElement->JSValueConvertible - - -JSTypedArray - + + +JSValue + -JSTypedArray +JSValue - + -JSTypedArray->JSValueConvertible +JSValue->JSValueConvertible @@ -117,7 +121,9 @@

Types Conforming to JSValue​Convertible

TypedArrayElement
JSTypedArray
-
+

A wrapper around the JavaScript TypedArray class +that exposes its properties in a type-safe and Swifty way.

+
JSValue

JSValue represents a value in JavaScript.

@@ -134,6 +140,10 @@

js​Value()

func jsValue() -> JSValue
+
+

Convert this object into a JSValue.

+ +
@@ -141,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 8ed764482..07476bf8d 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -38,6 +38,10 @@

public class JSValueDecoder
+
+

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

+ +

Initializers

@@ -47,6 +51,10 @@

init()

public init()
+
+

Initializes a new JSValueDecoder.

+ +
@@ -57,6 +65,35 @@

decode(_:​from:​user​Info:​)

public func decode<T>(_: T.Type = T.self, from value: JSValue, userInfo: [CodingUserInfoKey: Any] = [:]) throws -> T where T: Decodable
+
+

Decodes a top-level value of the given type from the given JavaScript value representation.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
T

The type of the value to decode.

+
valueJSValue

The JSValue to decode from.

+
@@ -67,7 +104,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index a7c534174..9e71b3426 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -100,9 +100,11 @@

Conforms To

JSValueConstructible
-
+

Types conforming to this protocol can be constructed from JSValue.

+
JSValueConvertible
-
+

Confirming types are convertible to JSValue.

+
@@ -129,7 +131,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index cb7f6b5fa..060165d1f 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index e1d40604b..f71a38b25 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 9f877afd2..8253f6863 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,9 @@

Classes

- +

A wrapper around the JavaScript Array class +that exposes its properties in a type-safe and Swifty way.

+
@@ -102,7 +104,9 @@

Classes

- +

A wrapper around the JavaScript TypedArray class +that exposes its properties in a type-safe and Swifty way.

+
@@ -144,7 +148,8 @@

Classes

- +

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

+

@@ -179,7 +184,8 @@

Protocols

- +

Types conforming to this protocol can be constructed from JSValue.

+
@@ -187,7 +193,8 @@

Protocols

- +

Confirming types are convertible to JSValue.

+
@@ -262,7 +269,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 1a94dcefe..e472e3b49 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 226a5e56d..c6bba08fb 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From a127c67f250ae35c2705bffe108ac9753a6bad09 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 16 Sep 2020 15:32:20 +0000 Subject: [PATCH 012/148] deploy: 6652885c89e0558c48ed7ac6f8b23a339611ba56 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 6 +-- JSFunction/index.html | 6 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 32 ++++++------- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++++------- JSValue/index.html | 58 ++++++++++++------------ JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 36 +++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 40 +++++++--------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 118 insertions(+), 124 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index d65165872..1b46e7752 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -209,7 +209,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 67b494dca..63b8bc32e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 688601a17..60a03f3a6 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1141293e5..65afd5865 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index e84cc00f9..ee0ac100e 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 759b66a2c..ad9b9495f 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->CustomStringConvertible @@ -92,7 +92,7 @@ - + JSError->Error @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 705299426..1ee9dc7ef 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -259,7 +259,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 632ad42c5..a40c092f4 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 514b7c93d..2af625e5e 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,40 +89,40 @@

- + JSObject->CustomStringConvertible - + Equatable - - -Equatable + + +Equatable - + JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 540baf727..d847ad6d4 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 39547e7f3..d532d977a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b5cacc182..c05d9df21 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSValueConvertible @@ -236,7 +236,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 7de03415f..66af8d2ae 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,63 +65,63 @@

- + -Equatable - +ExpressibleByStringLiteral + -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral - - -JSValueConvertible - + + +Equatable + -JSValueConvertible +Equatable - - -JSValue->JSValueConvertible + + +JSValue->Equatable - - -ExpressibleByIntegerLiteral - + + +JSValueConvertible + -ExpressibleByIntegerLiteral +JSValueConvertible - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueConvertible @@ -339,7 +339,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9b268b32d..e6e027504 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -137,7 +137,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index cd90067a5..acbf16e94 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -75,38 +75,38 @@
- + JSTypedArray->JSValueConvertible - - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - - -TypedArrayElement->JSValueConvertible + + +JSValue->JSValueConvertible - - -JSValue - + + +TypedArrayElement + -JSValue +TypedArrayElement - - -JSValue->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 07476bf8d..bf8f60134 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 9e71b3426..d112e03ba 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -26,7 +26,7 @@ @@ -61,33 +61,33 @@
- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible @@ -113,13 +113,7 @@

Conforms To

Requirements

-
-

- typed​Array​Kind -

-
var typedArrayKind: JavaScriptTypedArrayKind
-
-
+

typed​Array​Class

@@ -131,7 +125,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 060165d1f..362f0b3a7 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index f71a38b25..aff8dc45e 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 8253f6863..e344efa6d 100644 --- a/index.html +++ b/index.html @@ -269,7 +269,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index e472e3b49..d0830759d 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index c6bba08fb..c2a25cfc4 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 36bf42b15e1609e18298026792a253ef47582014 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 16 Sep 2020 16:39:01 +0000 Subject: [PATCH 013/148] deploy: 8cdc2d109d9668351856d5aa250bca60d4635edd --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 2 +- JSFunction/index.html | 10 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 50 +++++----- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++---- JSValue/index.html | 120 ++++++++++++++--------- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 44 ++++----- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 22 files changed, 171 insertions(+), 149 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 1b46e7752..2d730d795 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -209,7 +209,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 63b8bc32e..3c7ca1ef0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 60a03f3a6..4eff04925 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 65afd5865..41b276d0e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index ee0ac100e..54dc045bb 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -397,7 +397,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index ad9b9495f..229a009f0 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1ee9dc7ef..93629456f 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -259,7 +259,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a40c092f4..4c8f650e0 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 2af625e5e..590e97a55 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,50 +79,50 @@

- - -CustomStringConvertible - - -CustomStringConvertible + + +Equatable + + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index d847ad6d4..c79e7d49f 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d532d977a..bb54e4fe1 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index c05d9df21..be2088407 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -ExpressibleByArrayLiteral - + + +JSValueConvertible + -ExpressibleByArrayLiteral +JSValueConvertible - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSValueConvertible - - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral @@ -236,7 +236,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 66af8d2ae..c1e4265d2 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -51,79 +51,94 @@

- - + + %3 - + JSValue - -JSValue + +JSValue - - -ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +JSValueConvertible + + +JSValueConvertible - - -JSValue->ExpressibleByStringLiteral - - + + +JSValue->JSValueConvertible + + - + -ExpressibleByIntegerLiteral - - -ExpressibleByIntegerLiteral +Equatable + + +Equatable - - -JSValue->ExpressibleByIntegerLiteral - - + + +JSValue->Equatable + + - + -Equatable - - -Equatable +ExpressibleByNilLiteral + + +ExpressibleByNilLiteral - + + +JSValue->ExpressibleByNilLiteral + + + + + +ExpressibleByIntegerLiteral + + +ExpressibleByIntegerLiteral + + + + -JSValue->Equatable - - +JSValue->ExpressibleByIntegerLiteral + + - - -JSValueConvertible - - -JSValueConvertible + + +ExpressibleByStringLiteral + + +ExpressibleByStringLiteral - - -JSValue->JSValueConvertible - - + + +JSValue->ExpressibleByStringLiteral + + @@ -138,6 +153,7 @@

Conforms To

Equatable
ExpressibleByIntegerLiteral
+
ExpressibleByNilLiteral
ExpressibleByStringLiteral

@@ -155,6 +171,12 @@

init(integer​Literal:​)

public init(integerLiteral value: Double)
+ +
+

+ init(nil​Literal:​) +

+
public init(nilLiteral: ())
@@ -339,7 +361,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e6e027504..6b08caac8 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -137,7 +137,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index acbf16e94..d6c3c1c3e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,48 +65,48 @@ - - -JSTypedArray - + + +TypedArrayElement + -JSTypedArray +TypedArrayElement - + -JSTypedArray->JSValueConvertible +TypedArrayElement->JSValueConvertible - - -JSValue - + + +JSTypedArray + -JSValue +JSTypedArray - + -JSValue->JSValueConvertible +JSTypedArray->JSValueConvertible - - -TypedArrayElement - + + +JSValue + -TypedArrayElement +JSValue - + -TypedArrayElement->JSValueConvertible +JSValue->JSValueConvertible @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index bf8f60134..51e0261c1 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index d112e03ba..ab1bdb381 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -61,33 +61,33 @@ - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -125,7 +125,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 362f0b3a7..1ce13ccfa 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index aff8dc45e..329078ea5 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index e344efa6d..c6db463cc 100644 --- a/index.html +++ b/index.html @@ -269,7 +269,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index d0830759d..9f2b035b6 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index c2a25cfc4..d66ce83cb 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From d59f14949981a758355c34dc0fe09da89eaccf44 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 18 Sep 2020 03:18:32 +0000 Subject: [PATCH 014/148] deploy: 702dd896522adc37df7f576ccd053ed28cc4d295 --- JSArray/index.html | 70 ++++++-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 219 +++++++++++++++++++++++ JSBridgedType/index.html | 158 ++++++++++++++++ JSClosure/index.html | 2 +- JSDate/index.html | 56 ++++-- JSError/index.html | 76 +++++--- JSFunction/index.html | 18 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 56 +++--- JSObjectRef/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 107 +++++------ JSValue/index.html | 201 +++++++++++++++------ JSValueCodable/index.html | 50 ++++++ JSValueConstructible/index.html | 7 +- JSValueConvertible/index.html | 66 ++----- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 66 ++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 38 +++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 25 files changed, 889 insertions(+), 321 deletions(-) create mode 100644 JSBridgedClass/index.html create mode 100644 JSBridgedType/index.html create mode 100644 JSValueCodable/index.html diff --git a/JSArray/index.html b/JSArray/index.html index 2d730d795..da2a00a68 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSArray

-
public class JSArray
+
public class JSArray: JSBridgedClass

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

@@ -66,20 +66,35 @@ + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSArray->JSBridgedClass + + + - + RandomAccessCollection - - -RandomAccessCollection + + +RandomAccessCollection - + JSArray->RandomAccessCollection - - + + @@ -94,7 +109,10 @@

Nested Types

Conforms To

-
RandomAccessCollection
+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+
+
RandomAccessCollection

@@ -110,11 +128,17 @@

Initializers

-
+
+

+ init?(from:​) +

+
public required convenience init?(from value: JSValue)
+
+

init?(_:​)

-
public init?(_ ref: JSObject)
+
public convenience init?(_ jsObject: JSObject)

Construct a JSArray from Array JSObject. Return nil if the object is not an Array.

@@ -139,12 +163,30 @@

Parameters

+
+
+

+ init(unsafely​Wrapping:​) +

+
public required init(unsafelyWrapping jsObject: JSObject)

Properties

-
+
+

+ constructor +

+
let constructor = JSObject.global.Array.function!
+
+
+

+ js​Object +

+
let jsObject: JSObject
+
+

start​Index

@@ -209,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3c7ca1ef0..9b00a1149 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 4eff04925..9cfe1c9f7 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html new file mode 100644 index 000000000..80c5e8864 --- /dev/null +++ b/JSBridgedClass/index.html @@ -0,0 +1,219 @@ + + + + + + JavaScriptKit - JSBridgedClass + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + JSBridged​Class +

+ +
public protocol JSBridgedClass: JSBridgedType
+
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+ +
+
+ +
+ + + + + + +%3 + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedType + + +JSBridgedType + + + + + +JSBridgedClass->JSBridgedType + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + + + + +
+

Conforms To

+
+
JSBridgedType
+

Use this protocol when your type has no single JavaScript class. +For example, a union type of multiple classes or primitive values.

+
+
+

Types Conforming to JSBridged​Class

+
+
JSArray
+

A wrapper around the JavaScript Array class +that exposes its properties in a type-safe and Swifty way.

+
+
JSDate
+

A wrapper around the JavaScript Date +class that +exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example +getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches +in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS +implementations are not exposed in a type-safe manner, you should access the underlying jsObject +property if you need those.

+
+
JSError
+

A wrapper around the JavaScript Error +class that +exposes its properties in a type-safe way.

+
+
JSTypedArray
+

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

+
+
+
+ + + +
+

Requirements

+ +
+

+ constructor +

+
var constructor: JSFunction
+
+

The constructor function for the JavaScript class

+ +
+
+
+

+ js​Object +

+
var jsObject: JSObject
+
+

The JavaScript object wrapped by this instance. +You may assume that jsObject instanceof Self.constructor == true

+ +
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html new file mode 100644 index 000000000..5b739dce4 --- /dev/null +++ b/JSBridgedType/index.html @@ -0,0 +1,158 @@ + + + + + + JavaScriptKit - JSBridgedType + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + JSBridged​Type +

+ +
public protocol JSBridgedType: JSValueCodable, CustomStringConvertible
+
+

Use this protocol when your type has no single JavaScript class. +For example, a union type of multiple classes or primitive values.

+ +
+
+ +
+ + + + + + +%3 + + + +JSBridgedType + + +JSBridgedType + + + + + +JSValueCodable + + +JSValueCodable + + + + + +JSBridgedType->JSValueCodable + + + + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSBridgedType->CustomStringConvertible + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedClass->JSBridgedType + + + + + + + + +
+

Conforms To

+
+
CustomStringConvertible
+
JSValueCodable
+
+

Types Conforming to JSBridged​Type

+
+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+
+
+
+ + + +
+

Requirements

+ +
+

+ value +

+
var value: JSValue
+
+

This is the value your class wraps.

+ +
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSClosure/index.html b/JSClosure/index.html index 41b276d0e..e7dcd5669 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 54dc045bb..a5c1c6d53 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSDate

-
public final class JSDate
+
public final class JSDate: JSBridgedClass

A wrapper around the JavaScript Date class that @@ -71,20 +71,35 @@

+ + +JSBridgedClass + + +JSBridgedClass + + + + + +JSDate->JSBridgedClass + + + - + Comparable - - -Comparable + + +Comparable JSDate->Comparable - - + + @@ -94,7 +109,10 @@

Conforms To

-
Comparable
+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+
+
Comparable
@@ -121,12 +139,28 @@

represents a day of the month starting at 1.

+ +
+

+ init(unsafely​Wrapping:​) +

+
public init(unsafelyWrapping jsObject: JSObject)

Properties

-
+
+

+ constructor +

+
let constructor = JSObject.global.Date.function!
+
+

The constructor function used to create new Date objects.

+ +
+
+

js​Object

@@ -397,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 229a009f0..056a342d4 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSError

-
public final class JSError: Error
+
public final class JSError: Error, JSBridgedClass

A wrapper around the JavaScript Error class that @@ -53,17 +53,17 @@

- - + + %3 - + JSError - -JSError + +JSError @@ -71,31 +71,46 @@ CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSError->CustomStringConvertible - - + + Error - -Error + +Error - + JSError->Error - - + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSError->JSBridgedClass + + @@ -105,7 +120,10 @@

Conforms To

-
CustomStringConvertible
+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+
+
CustomStringConvertible
Error
@@ -121,12 +139,28 @@

Creates a new instance of the JavaScript Error class with a given message.

+ +
+

+ init(unsafely​Wrapping:​) +

+
public init(unsafelyWrapping jsObject: JSObject)

Properties

-
+
+

+ constructor +

+
let constructor = JSObject.global.Error.function!
+
+

The constructor function used to create new Error objects.

+ +
+
+

js​Object

@@ -185,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 93629456f..f6c07245f 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -26,7 +26,7 @@ @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -244,6 +244,12 @@

@available(*, unavailable, message: "Please use JSClosure instead") public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction
+
+

+ construct(from:​) +

+
public override class func construct(from value: JSValue) -> Self?
+

js​Value() @@ -259,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4c8f650e0..65810f8cf 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 590e97a55..409f836f9 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -26,7 +26,7 @@ @@ -79,6 +79,21 @@

+ + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSObject->CustomStringConvertible + + + Equatable @@ -94,35 +109,20 @@ - - -CustomStringConvertible - - -CustomStringConvertible - - - - - -JSObject->CustomStringConvertible - - - - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -173,7 +173,7 @@

public func isInstanceOf(_ constructor: JSFunction) -> Bool
-

Return true if this object is an instance of the constructor. Return false, if not.

+

Return true if this value is an instance of the passed constructor function.

Parameters

@@ -196,7 +196,7 @@

Parameters

Returns

-

The result of instanceof in JavaScript environment.

+

The result of instanceof in the JavaScript environment.

@@ -234,6 +234,12 @@

Parameters

+
+

+ construct(from:​) +

+
public class func construct(from value: JSValue) -> Self?
+

js​Value() @@ -249,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index c79e7d49f..a708b5c6b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index bb54e4fe1..bc2c36cb6 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index be2088407..3cbd3898e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -26,7 +26,7 @@ @@ -37,10 +37,10 @@

JSTyped​Array

-
public class JSTypedArray<Element>: JSValueConvertible, ExpressibleByArrayLiteral where Element: TypedArrayElement
+
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement
-

A wrapper around the JavaScript TypedArray class -that exposes its properties in a type-safe and Swifty way.

+

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -66,33 +66,33 @@ - - -JSValueConvertible - + + +ExpressibleByArrayLiteral + -JSValueConvertible +ExpressibleByArrayLiteral - - -JSTypedArray->JSValueConvertible + + +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSBridgedClass @@ -104,8 +104,8 @@

Conforms To

-
JSValueConvertible
-

Confirming types are convertible to JSValue.

+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

ExpressibleByArrayLiteral
@@ -113,43 +113,14 @@

Conforms To

Initializers

-
-

- init?(_:​) -

-
public init?(_ object: JSObject)
-
-

Construct a JSTypedArray from TypedArray JSObject. -Return nil if the object is not TypedArray.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
objectJSObject

A JSObject expected to be TypedArray

-
-
-
+

init(length:​)

-
public convenience init(length: Int)
+
public init(length: Int)
-

Initialize a new instance of TypedArray in JavaScript environment with given length zero value.

+

Initialize a new instance of TypedArray in JavaScript environment with given length. +All the elements will be initialized to zero.

Parameters

@@ -166,12 +137,18 @@

Parameters

length Int -

The length of elements that will be allocated.

+

The number of elements that will be allocated.

+
+

+ init(unsafely​Wrapping:​) +

+
required public init(unsafelyWrapping jsObject: JSObject)
+

init(array​Literal:​) @@ -218,14 +195,20 @@

-
-

Methods

+
+

Properties

-
+
+

+ constructor +

+
var constructor: JSFunction
+
+

- js​Value() + js​Object

-
public func jsValue() -> JSValue
+
var jsObject: JSObject
@@ -236,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index c1e4265d2..65860bc11 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -51,94 +51,124 @@

- - + + %3 - + JSValue - -JSValue + +JSValue - - -JSValueConvertible - - -JSValueConvertible - - - - - -JSValue->JSValueConvertible - - - - + Equatable - - -Equatable + + +Equatable - + JSValue->Equatable - - + + - - -ExpressibleByNilLiteral - - -ExpressibleByNilLiteral + + +ExpressibleByFloatLiteral + + +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral - - + + +JSValue->ExpressibleByFloatLiteral + + - + ExpressibleByIntegerLiteral - - -ExpressibleByIntegerLiteral + + +ExpressibleByIntegerLiteral JSValue->ExpressibleByIntegerLiteral - - + + + + + +JSValueCodable + + +JSValueCodable + + + + + +JSValue->JSValueCodable + + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - - + + + + + +ExpressibleByNilLiteral + + +ExpressibleByNilLiteral + + + + + +JSValue->ExpressibleByNilLiteral + + + + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSValue->CustomStringConvertible + + @@ -148,13 +178,13 @@

Conforms To

-
JSValueConvertible
-

Confirming types are convertible to JSValue.

-
+
CustomStringConvertible
Equatable
+
ExpressibleByFloatLiteral
ExpressibleByIntegerLiteral
ExpressibleByNilLiteral
ExpressibleByStringLiteral
+
JSValueCodable
@@ -170,7 +200,13 @@

init(integer​Literal:​)

-
public init(integerLiteral value: Double)
+
public init(integerLiteral value: Int32)
+
+
+

+ init(float​Literal:​) +

+
public init(floatLiteral value: Double)

@@ -310,12 +346,24 @@

If not, returns false.

+
+
+

+ description +

+
var description: String

Methods

-
+
+

+ from​JSValue() +

+
public func fromJSValue<Type>() -> Type? where Type: JSValueConstructible
+
+

function(_:​)

@@ -346,6 +394,45 @@

+
+

+ is​Instance​Of(_:​) +

+
public func isInstanceOf(_ constructor: JSFunction) -> Bool
+
+

Return true if this value is an instance of the passed constructor function. +Returns false for everything except objects and functions.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
constructorJSFunction

The constructor function to check.

+
+

Returns

+

The result of instanceof in the JavaScript environment.

+ +
+
+

+ construct(from:​) +

+
public static func construct(from value: JSValue) -> Self?
+

js​Value() @@ -361,7 +448,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html new file mode 100644 index 000000000..af73a4e54 --- /dev/null +++ b/JSValueCodable/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - JSValueCodable + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+ +
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6b08caac8..7c98533cf 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -89,7 +89,8 @@

Types Conforming to JSValue​Constructible

TypedArrayElement
-
+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+
@@ -105,7 +106,7 @@

static func construct(from value: JSValue) -> Self?

Construct an instance of Self, if possible, from the given JSValue. -Return nil if fail to construct.

+Return nil if the value is not compatible with the conforming Swift type.

Parameters

@@ -137,7 +138,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d6c3c1c3e..f583c5ab4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -39,7 +39,7 @@

public protocol JSValueConvertible
-

Confirming types are convertible to JSValue.

+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -51,17 +51,17 @@ - - + + %3 - + JSValueConvertible - -JSValueConvertible + +JSValueConvertible @@ -69,46 +69,16 @@ TypedArrayElement - -TypedArrayElement + +TypedArrayElement - -TypedArrayElement->JSValueConvertible - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSValueConvertible - - - - - -JSValue - - -JSValue - - - - -JSValue->JSValueConvertible - - +TypedArrayElement->JSValueConvertible + + @@ -119,13 +89,7 @@

Types Conforming to JSValue​Convertible

TypedArrayElement
-
-
JSTypedArray
-

A wrapper around the JavaScript TypedArray class -that exposes its properties in a type-safe and Swifty way.

-
-
JSValue
-

JSValue represents a value in JavaScript.

+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

@@ -141,7 +105,7 @@

func jsValue() -> JSValue
-

Convert this object into a JSValue.

+

Create a JSValue that represents this object

@@ -151,7 +115,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 51e0261c1..4dc4a284a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ab1bdb381..c95f38fcf 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -38,62 +38,14 @@

public protocol TypedArrayElement: JSValueConvertible, JSValueConstructible
+
+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+ +
- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -JSValueConvertible - - -JSValueConvertible - - - - - -TypedArrayElement->JSValueConvertible - - - - - -JSValueConstructible - - -JSValueConstructible - - - - - -TypedArrayElement->JSValueConstructible - - - - - - +
@@ -103,7 +55,7 @@

Conforms To

Types conforming to this protocol can be constructed from JSValue.

JSValueConvertible
-

Confirming types are convertible to JSValue.

+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -118,6 +70,10 @@

typed​Array​Class

var typedArrayClass: JSFunction
+
+

The constructor function for the TypedArray class for this particular kind of number

+ +
@@ -125,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 1ce13ccfa..1285e04d6 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 329078ea5..eb11fcdb2 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index c6db463cc..4d71e1c15 100644 --- a/index.html +++ b/index.html @@ -104,8 +104,8 @@

Classes

-

A wrapper around the JavaScript TypedArray class -that exposes its properties in a type-safe and Swifty way.

+

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -176,7 +176,27 @@

Protocols

- +

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+ +
+
+ + JSBridged​Type + +
+
+

Use this protocol when your type has no single JavaScript class. +For example, a union type of multiple classes or primitive values.

+ +
+
+ + JSBridged​Class + +
+
+

Conform to this protocol when your Swift class wraps a JavaScript class.

+
@@ -193,7 +213,7 @@

Protocols

-

Confirming types are convertible to JSValue.

+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -224,6 +244,14 @@

Typealiases

+
+
+ + JSValue​Codable + +
+
+
@@ -269,7 +297,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9f2b035b6..27a7e5cd0 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index d66ce83cb..19a7aa13f 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 3eb472e42cbd5a9c7ac4e2a2796e1530651ddb68 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 18 Sep 2020 11:07:29 +0000 Subject: [PATCH 015/148] deploy: 36a06c5ced68688002a5b4e0d95cec5215691f94 --- JSArray/index.html | 30 ++-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 78 +++++----- JSBridgedType/index.html | 6 +- JSClosure/index.html | 2 +- JSDate/index.html | 34 ++--- JSError/index.html | 36 ++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 ++-- JSObjectRef/index.html | 2 +- JSString/index.html | 175 +++++++++++++++++++++++ JSTimer/index.html | 2 +- JSTypedArray/index.html | 30 ++-- JSValue/index.html | 113 +++++++++------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 +++-- JSValueConvertible/index.html | 28 +++- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 4 +- index.html | 18 ++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 4 +- 26 files changed, 501 insertions(+), 201 deletions(-) create mode 100644 JSString/index.html diff --git a/JSArray/index.html b/JSArray/index.html index da2a00a68..92cbe926f 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,33 +66,33 @@ - - -JSBridgedClass - + + +RandomAccessCollection + -JSBridgedClass +RandomAccessCollection - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection - + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass - + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 9b00a1149..e9cea53b0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9cfe1c9f7..5a88263f2 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 80c5e8864..45151682f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - + -JSArray->JSBridgedClass +JSTypedArray->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 5b739dce4..fe922d142 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -91,7 +91,7 @@

- + JSBridgedType->CustomStringConvertible @@ -106,7 +106,7 @@ - + JSBridgedClass->JSBridgedType @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e7dcd5669..0fa9ab620 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index a5c1c6d53..3c4d6b557 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - - -JSDate->JSBridgedClass + + +JSDate->Comparable - - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - - -JSDate->Comparable + + +JSDate->JSBridgedClass @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 056a342d4..b815c3f6a 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,18 @@

- - -CustomStringConvertible - + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass - - -JSError->CustomStringConvertible + + +JSError->JSBridgedClass @@ -92,23 +92,23 @@
- + JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible + -JSBridgedClass +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index f6c07245f..ff93824c3 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 65810f8cf..8539292a9 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 409f836f9..c0c48c766 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,40 +89,40 @@

- + JSObject->CustomStringConvertible - + Equatable - - -Equatable + + +Equatable JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a708b5c6b..c0c644748 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html new file mode 100644 index 000000000..c4e545c01 --- /dev/null +++ b/JSString/index.html @@ -0,0 +1,175 @@ + + + + + + JavaScriptKit - JSString + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Structure + JSString +

+ +
public struct JSString: LosslessStringConvertible, Equatable
+
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+ +
+
+

Conversion between Swift.String and JSString can be:

+ +
// Convert `Swift.String` to `JSString`
+let jsString: JSString = ...
+let swiftString: String = String(jsString)
+
+// Convert `JSString` to `Swift.String`
+let swiftString: String = ...
+let jsString: JSString = JSString(swiftString)
+
+
+
+ +
+ + + +
+

Conforms To

+
+
JSValueConstructible
+

Types conforming to this protocol can be constructed from JSValue.

+
+
JSValueConvertible
+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
+
Equatable
+
ExpressibleByStringLiteral
+
LosslessStringConvertible
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
public init(_ stringValue: String)
+
+

Instantiate a new JSString with given Swift.String.

+ +
+
+
+

+ init(string​Literal:​) +

+
public init(stringLiteral value: String)
+
+
+
+

Properties

+ +
+

+ description +

+
var description: String
+
+

A Swift representation of this JSString. +Note that this accessor may copy the JS string value into Swift side memory.

+ +
+
+
+
+

Methods

+ +
+

+ ==(lhs:​rhs:​) +

+
public static func ==(lhs: JSString, rhs: JSString) -> Bool
+
+

Returns a Boolean value indicating whether two strings are equal values.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
lhsJSString

A string to compare.

+
rhsJSString

Another string to compare.

+
+
+
+

+ construct(from:​) +

+
public static func construct(from value: JSValue) -> JSString?
+
+
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSTimer/index.html b/JSTimer/index.html index bc2c36cb6..070698200 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 3cbd3898e..fde483740 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral + -JSBridgedClass +ExpressibleByArrayLiteral - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 65860bc11..1475e6141 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -75,98 +75,98 @@

- + JSValue->Equatable - + -ExpressibleByFloatLiteral - +ExpressibleByStringLiteral + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral - +ExpressibleByNilLiteral + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCodable - +CustomStringConvertible + -JSValueCodable +CustomStringConvertible - - -JSValue->JSValueCodable + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral - +ExpressibleByFloatLiteral + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible - +JSValueCodable + -CustomStringConvertible +JSValueCodable - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCodable @@ -228,7 +228,7 @@

string

-
case string(: String)
+
case string(: JSString)

@@ -290,6 +290,23 @@

Returns the String value of this JS value if the type is string. If not, returns nil.

+

+
+

Note that this accessor may copy the JS string value into Swift side memory.

+ +

To avoid the copying, please consider the jsString instead.

+ +
+ +
+

+ js​String +

+
var jsString: JSString?
+
+

Returns the JSString value of this JS value if the type is string. +If not, returns nil.

+
@@ -363,6 +380,12 @@

public func fromJSValue<Type>() -> Type? where Type: JSValueConstructible
+
+

+ string(_:​) +

+
public static func string(_ value: String) -> JSValue
+

function(_:​) @@ -448,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index af73a4e54..b97eacf44 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 7c98533cf..2e25b318f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,20 +65,35 @@

+ + +JSString + + +JSString + + + + + +JSString->JSValueConstructible + + + - + TypedArrayElement - - -TypedArrayElement + + +TypedArrayElement - + TypedArrayElement->JSValueConstructible - - + + @@ -91,6 +106,9 @@

Types Conforming to JSValue​Constructible

TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+
JSString
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+
@@ -138,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f583c5ab4..70cd3d118 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -69,16 +69,31 @@ TypedArrayElement - -TypedArrayElement + +TypedArrayElement TypedArrayElement->JSValueConvertible - - + + + + + +JSString + + +JSString + + + + + +JSString->JSValueConvertible + +
@@ -91,6 +106,9 @@

Types Conforming to JSValue​Convertible

TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+
JSString
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+
@@ -115,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4dc4a284a..a6cb54622 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c95f38fcf..1664d8256 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement->JSValueConvertible + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement->JSValueConstructible + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 1285e04d6..594fdfb4d 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index eb11fcdb2..a7e4ac48d 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -37,13 +37,13 @@

get​JSValue(this:​name:​)

-
public func getJSValue(this: JSObject, name: String) -> JSValue
+
public func getJSValue(this: JSObject, name: JSString) -> JSValue

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 4d71e1c15..a2b7d7aa4 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@ @@ -150,6 +150,20 @@

Classes

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

+
+ +
+
+

Structures

+
+
+ + JSString + +
+
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+
@@ -297,7 +311,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 27a7e5cd0..fe4f446e9 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 19a7aa13f..c734f8788 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -37,13 +37,13 @@

set​JSValue(this:​name:​value:​)

-
public func setJSValue(this: JSObject, name: String, value: JSValue)
+
public func setJSValue(this: JSObject, name: JSString, value: JSValue)

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 1d1ea07df61c9c0f45e183d8800cde604a772783 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 18 Sep 2020 16:09:57 +0000 Subject: [PATCH 016/148] deploy: a41f9bacc1bc55a7f08ec42cc0ceffab6469d5ab --- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 +++++++++--------- JSBridgedType/index.html | 42 +++++----- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 46 +++++------ JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 +++---- JSObjectRef/index.html | 2 +- JSString/index.html | 101 ++++++++++++++++++++++- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 93 ++++++++------------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 34 ++++---- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +------------ getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 26 files changed, 274 insertions(+), 256 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 92cbe926f..3e2fd15b8 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@ - + JSArray->RandomAccessCollection @@ -91,7 +91,7 @@ - + JSArray->JSBridgedClass @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e9cea53b0..ea4213369 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5a88263f2..763002140 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 45151682f..f4ed48f99 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fe922d142..a6da30f96 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,49 +67,49 @@

- + JSValueCodable - - -JSValueCodable + + +JSValueCodable - + JSBridgedType->JSValueCodable - - + + - + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0fa9ab620..0c9c8f24f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 3c4d6b557..e8a9d16e6 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index b815c3f6a..e2215c497 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,48 +67,48 @@

- - -JSBridgedClass - + + +CustomStringConvertible + -JSBridgedClass +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible - - -Error - + + +JSBridgedClass + -Error +JSBridgedClass - - -JSError->Error + + +JSError->JSBridgedClass - + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ff93824c3..a3fd0ffaa 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 8539292a9..93926cd9a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index c0c48c766..9b452b9b7 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -95,34 +95,34 @@

- + Equatable - - -Equatable + + +Equatable - + JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index c0c644748..2413faf5e 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index c4e545c01..e99d733ec 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -57,7 +57,104 @@

- + + + + + + +%3 + + + +JSString + + +JSString + + + + + +LosslessStringConvertible + + +LosslessStringConvertible + + + + + +JSString->LosslessStringConvertible + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +JSString->JSValueConstructible + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +JSString->JSValueConvertible + + + + + +Equatable + + +Equatable + + + + + +JSString->Equatable + + + + + +ExpressibleByStringLiteral + + +ExpressibleByStringLiteral + + + + + +JSString->ExpressibleByStringLiteral + + + + + +
@@ -168,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 070698200..1b602ed65 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index fde483740..5204dcdb8 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 1475e6141..dd8930a28 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,18 +65,18 @@

- + -Equatable - +JSValueCodable + -Equatable +JSValueCodable - + -JSValue->Equatable +JSValue->JSValueCodable @@ -90,89 +90,62 @@ - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral - +Equatable + -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -CustomStringConvertible - +ExpressibleByIntegerLiteral + -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral - +ExpressibleByFloatLiteral + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral - +ExpressibleByNilLiteral + -ExpressibleByFloatLiteral - - - - - -JSValue->ExpressibleByFloatLiteral - - - - - -JSValueCodable - - -JSValueCodable - - - - - -JSValue->JSValueCodable - - - - - - + - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConvertible + + +JSString->JSValueConvertible - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a6cb54622..1ba01248a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1664d8256..c562bdbc1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,59 +45,7 @@

- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -JSValueConvertible - - -JSValueConvertible - - - - - -TypedArrayElement->JSValueConvertible - - - - - -JSValueConstructible - - -JSValueConstructible - - - - - -TypedArrayElement->JSValueConstructible - - - - - - +
@@ -133,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 594fdfb4d..ad650a502 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index a7e4ac48d..461d3c7f3 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index a2b7d7aa4..8aef9748b 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index fe4f446e9..a75b240a0 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index c734f8788..9ad64bcd8 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 5a82d7713b1bc83abc6009e2ba4a8284c0a14476 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 24 Sep 2020 00:07:09 +0000 Subject: [PATCH 017/148] deploy: 87c8f7322e9e62a9b508b324d761dc6259dfa1fe --- JSArray/index.html | 30 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 66 +++++++++---------- JSBridgedType/index.html | 44 ++++++------- JSClosure/index.html | 2 +- JSDate/index.html | 34 +++++----- JSError/index.html | 6 +- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +- JSObjectRef/index.html | 2 +- JSString/index.html | 72 ++++++++++----------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 81 ++++++++++++++++-------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 +++++----- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 26 files changed, 276 insertions(+), 197 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 3e2fd15b8..589278fd8 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,33 +66,33 @@ - - -RandomAccessCollection - + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass - + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection + -JSBridgedClass +RandomAccessCollection - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index ea4213369..d7bfd77a0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 763002140..c344de330 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f4ed48f99..354e17778 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,19 +66,34 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + @@ -90,23 +105,23 @@ - + JSError->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -120,26 +135,11 @@ - + JSTypedArray->JSBridgedClass - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a6da30f96..02c0ae74b 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,49 +67,49 @@

- + JSValueCodable - - -JSValueCodable + + +JSValueCodable - + JSBridgedType->JSValueCodable - - + + - + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0c9c8f24f..2a01f1639 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index e8a9d16e6..54aa8a28e 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - - -JSDate->Comparable + + +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - - -JSDate->JSBridgedClass + + +JSDate->Comparable @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index e2215c497..049beb944 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->CustomStringConvertible @@ -107,7 +107,7 @@ - + JSError->Error @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index a3fd0ffaa..f95f957f4 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 93926cd9a..81ccaf77f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 9b452b9b7..052e468a8 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,7 +89,7 @@

- + JSObject->CustomStringConvertible @@ -104,7 +104,7 @@ - + JSObject->Equatable @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 2413faf5e..733f062e6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index e99d733ec..b344a2a51 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,78 +77,78 @@

- - -LosslessStringConvertible - + + +JSValueConvertible + -LosslessStringConvertible +JSValueConvertible - - -JSString->LosslessStringConvertible + + +JSString->JSValueConvertible - - -JSValueConstructible - + + +ExpressibleByStringLiteral + -JSValueConstructible +ExpressibleByStringLiteral - - -JSString->JSValueConstructible + + +JSString->ExpressibleByStringLiteral - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSString->JSValueConvertible +JSString->JSValueConstructible - + -Equatable - +LosslessStringConvertible + -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral - +Equatable + -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 1b602ed65..03781c9dc 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5204dcdb8..3411df6b1 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -91,7 +91,7 @@ - + JSTypedArray->ExpressibleByArrayLiteral @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index dd8930a28..e351fad1b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,18 +65,18 @@

- + -JSValueCodable - +ExpressibleByFloatLiteral + -JSValueCodable +ExpressibleByFloatLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByFloatLiteral @@ -90,23 +90,23 @@
- + JSValue->ExpressibleByStringLiteral - + -Equatable - +ExpressibleByNilLiteral + -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral @@ -120,32 +120,59 @@ - + JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral - +Equatable + -ExpressibleByFloatLiteral +Equatable - + -JSValue->ExpressibleByFloatLiteral +JSValue->Equatable - + -ExpressibleByNilLiteral - +JSValueCodable + -JSValueCodable + + + + + +JSValue->JSValueCodable + + + + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSValue->CustomStringConvertible + + + + + + @@ -444,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index ebfb76522..de9186562 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d70c6e9de..3e2da12e2 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConstructible + + +TypedArrayElement->JSValueConstructible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConstructible + + +JSString->JSValueConstructible @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index abaf19c6e..7a432fa03 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1ba01248a..87c2ead5f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c562bdbc1..a71082190 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement->JSValueConvertible + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement->JSValueConstructible + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index ad650a502..eb2d54826 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 461d3c7f3..4a2676ee4 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 8aef9748b..b20335ca6 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index a75b240a0..1d0123af8 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 9ad64bcd8..8759f773e 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 66f69cf0f4c611f936ea20a187bfbbb52ef62e93 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 24 Sep 2020 07:52:05 +0000 Subject: [PATCH 018/148] deploy: c52ea0985a5e98f1a434bdc01bc0a3001d5853d9 --- JSArray/index.html | 8 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 4 +- JSBridgedClass/index.html | 110 +----------- JSBridgedType/index.html | 42 ++--- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 60 ++++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 48 ++--- JSObjectRef/index.html | 2 +- JSPromise/index.html | 220 +++++++++++++++++++++++ JSString/index.html | 58 +++--- JSTimer/index.html | 2 +- JSTypedArray/index.html | 32 ++-- JSValue/index.html | 64 +++---- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 81 ++++++--- JSValueConvertible/index.html | 83 ++++++--- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 20 ++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 553 insertions(+), 341 deletions(-) create mode 100644 JSPromise/index.html diff --git a/JSArray/index.html b/JSArray/index.html index 589278fd8..fdecc8bd4 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -39,7 +39,7 @@

public class JSArray: JSBridgedClass
-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

@@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -91,7 +91,7 @@ - + JSArray->RandomAccessCollection @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index d7bfd77a0..810b22793 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index c344de330..7c35c5a4d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -85,7 +85,7 @@

Member Of

JSArray
-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

@@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 354e17778..a72a4d53c 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -45,104 +45,7 @@

- - - - - - -%3 - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedType - - -JSBridgedType - - - - - -JSBridgedClass->JSBridgedType - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - - - - +
@@ -156,7 +59,7 @@

Conforms To

Types Conforming to JSBridged​Class

JSArray
-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

JSDate
@@ -168,13 +71,8 @@

Types Conforming to JSBridged​Class

implementations are not exposed in a type-safe manner, you should access the underlying jsObject property if you need those.

-
JSError
-

A wrapper around the JavaScript Error -class that -exposes its properties in a type-safe way.

-
JSTypedArray
-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -212,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 02c0ae74b..a5a1eff23 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,49 +67,49 @@

- + JSValueCodable - - -JSValueCodable + + +JSValueCodable JSBridgedType->JSValueCodable - - + + - + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 2a01f1639..68fcb505a 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 54aa8a28e..a5e610ff4 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -81,7 +81,7 @@

- + JSDate->JSBridgedClass @@ -96,7 +96,7 @@ - + JSDate->Comparable @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 049beb944..1cdb895fc 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSError

-
public final class JSError: Error, JSBridgedClass
+
public final class JSError: Error, JSValueConvertible

A wrapper around the JavaScript Error class that @@ -67,33 +67,33 @@

- - -CustomStringConvertible - + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible - - -JSError->CustomStringConvertible + + +JSError->JSValueConvertible - - -JSBridgedClass - + + +CustomStringConvertible + -JSBridgedClass +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -107,7 +107,7 @@ - + JSError->Error @@ -120,8 +120,8 @@

Conforms To

-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

+
JSValueConvertible
+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

CustomStringConvertible
Error
@@ -156,7 +156,7 @@

let constructor = JSObject.global.Error.function!
-

The constructor function used to create new Error objects.

+

The constructor function used to create new JavaScript Error objects.

@@ -208,6 +208,20 @@

The textual representation of this error.

+
+

+ +
+

Methods

+ +
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+

Creates a new JSValue from this JSError instance.

+
@@ -219,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index f95f957f4..402123e31 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 81ccaf77f..9b753be85 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 052e468a8..eb5f5dfe1 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,21 +79,6 @@

- - -CustomStringConvertible - - -CustomStringConvertible - - - - - -JSObject->CustomStringConvertible - - - Equatable @@ -104,25 +89,40 @@
- + JSObject->Equatable + + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSObject->CustomStringConvertible + + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 733f062e6..68f5bf3eb 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html new file mode 100644 index 000000000..88b9796c3 --- /dev/null +++ b/JSPromise/index.html @@ -0,0 +1,220 @@ + + + + + + JavaScriptKit - JSPromise + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSPromise +

+ +
public final class JSPromise<Success, Failure>: JSValueConvertible, JSValueConstructible
+
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+ +
+
+

This doesn't 100% match the JavaScript API, as then overload with two callbacks is not available. +It's impossible to unify success and failure types from both callbacks in a single returned promise +without type erasure. You should chain then and catch in those cases to avoid type erasure.

+ +

IMPORTANT: instances of this class must have the same lifetime as the actual Promise object in +the JavaScript environment, because callback handlers will be deallocated when JSPromise.deinit is +executed.

+ +

If the actual Promise object in JavaScript environment lives longer than this JSPromise, it may +attempt to call a deallocated JSClosure.

+ +
+
+ +
+ + + + + + +%3 + + + +JSPromise + + +JSPromise + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +JSPromise->JSValueConstructible + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +JSPromise->JSValueConvertible + + + + + + + + +
+

Conforms To

+
+
JSValueConstructible
+

Types conforming to this protocol can be constructed from JSValue.

+
+
JSValueConvertible
+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
+
+
+
+

Initializers

+ +
+

+ init?(_:​) +

+
public init?(_ jsObject: JSObject)
+
+

Creates a new JSPromise instance from a given JavaScript Promise object. If jsObject +is not an instance of JavaScript Promise, this initializer will return nil.

+ +
+
+
+
+

Properties

+ +
+

+ js​Object +

+
let jsObject: JSObject
+
+

The underlying JavaScript Promise object.

+ +
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+

The underlying JavaScript Promise object wrapped as JSValue.

+ +
+
+
+

+ construct(from:​) +

+
public static func construct(from value: JSValue) -> Self?
+
+

Creates a new JSPromise instance from a given JavaScript Promise object. If value +is not an object and is not an instance of JavaScript Promise, this function will +return nil.

+ +
+
+
+

+ then(success:​) +

+
public func then(success: @escaping () -> ())
+
+

Schedules the success closure to be invoked on sucessful completion of self.

+ +
+
+
+

+ finally(success​OrFailure:​) +

+
public func finally(successOrFailure: @escaping () -> ()) -> Self
+
+

Schedules the failure closure to be invoked on either successful or rejected completion of +self.

+ +
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.4. +

+
+ + diff --git a/JSString/index.html b/JSString/index.html index b344a2a51..eccccb862 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -92,63 +92,63 @@

- + -ExpressibleByStringLiteral - +Equatable + -ExpressibleByStringLiteral +Equatable - + -JSString->ExpressibleByStringLiteral +JSString->Equatable - - -JSValueConstructible - + + +ExpressibleByStringLiteral + -JSValueConstructible +ExpressibleByStringLiteral - - -JSString->JSValueConstructible + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible - + + +JSValueConstructible + -LosslessStringConvertible +JSValueConstructible - + -JSString->LosslessStringConvertible +JSString->JSValueConstructible - + -Equatable - +LosslessStringConvertible + -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 03781c9dc..79abfe139 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 3411df6b1..b6d4749c6 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -39,7 +39,7 @@

public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement
-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -66,33 +66,33 @@

- - -JSBridgedClass - + + +ExpressibleByArrayLiteral + -JSBridgedClass +ExpressibleByArrayLiteral - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index e351fad1b..be03ae345 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -75,7 +75,7 @@

- + JSValue->ExpressibleByFloatLiteral @@ -90,23 +90,23 @@ - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral - +JSValueCodable + -ExpressibleByNilLiteral +JSValueCodable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCodable @@ -120,53 +120,53 @@ - + JSValue->ExpressibleByIntegerLiteral - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -JSValueCodable - +ExpressibleByNilLiteral + -JSValueCodable +ExpressibleByNilLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable @@ -471,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index de9186562..16d8ad9f5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 3e2da12e2..504a8d29a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -51,49 +51,64 @@

- - + + %3 - + JSValueConstructible - -JSValueConstructible + +JSValueConstructible - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->JSValueConstructible - - - - + JSString - - -JSString + + +JSString JSString->JSValueConstructible - - + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSValueConstructible + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->JSValueConstructible + + @@ -103,7 +118,15 @@

Types Conforming to JSValue​Constructible

-
TypedArrayElement
+
JSPromise
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
+
TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

JSString
@@ -156,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 7a432fa03..fd73d045b 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -51,17 +51,17 @@ - - + + %3 - + JSValueConvertible - -JSValueConvertible + +JSValueConvertible @@ -69,31 +69,61 @@ JSString - -JSString + +JSString - + JSString->JSValueConvertible - - + + + + + +JSError + + +JSError + + + + + +JSError->JSValueConvertible + + - + TypedArrayElement - - -TypedArrayElement + + +TypedArrayElement - + TypedArrayElement->JSValueConvertible - - + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSValueConvertible + + @@ -103,7 +133,20 @@

Types Conforming to JSValue​Convertible

-
TypedArrayElement
+
JSError
+

A wrapper around the JavaScript Error +class that +exposes its properties in a type-safe way.

+
+
JSPromise
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
+
TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

JSString
@@ -133,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 87c2ead5f..9e939ca9e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index a71082190..6454e9fc0 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@ - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index eb2d54826..f68f0391d 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 4a2676ee4..cc5de68f2 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index b20335ca6..1fafa3e63 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@

Classes

-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

@@ -78,6 +78,20 @@

Classes

class that exposes its properties in a type-safe way.

+ +
+ + JSPromise + +
+
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
@@ -104,7 +118,7 @@

Classes

-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. +

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -311,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 1d0123af8..e1a649e83 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 8759f773e..d453f8826 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 590707a65dae7b2f4edbd52986d0c68d8621bf90 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Thu, 24 Sep 2020 13:33:09 +0000 Subject: [PATCH 019/148] deploy: 76bbe70a9800342d5a65e9d880e312c831a6f3f9 --- JSArray/index.html | 56 +------------- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 86 ++++++++++++++++++++- JSBridgedType/index.html | 48 ++++++------ JSClosure/index.html | 2 +- JSDate/index.html | 34 ++++---- JSError/index.html | 36 ++++----- JSFunction/index.html | 14 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 74 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++---- JSValue/index.html | 98 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 ++++---- JSValueConvertible/index.html | 42 +++++----- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 315 insertions(+), 285 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index fdecc8bd4..0dd7b91c5 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -46,59 +46,7 @@

- - - - - - -%3 - - - -JSArray - - -JSArray - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSArray->JSBridgedClass - - - - - -RandomAccessCollection - - -RandomAccessCollection - - - - - -JSArray->RandomAccessCollection - - - - - - +
@@ -251,7 +199,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 810b22793..3a1664c19 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7c35c5a4d..753f90277 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a72a4d53c..0559efcfd 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -45,7 +45,89 @@

- + + + + + + +%3 + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedType + + +JSBridgedType + + + + + +JSBridgedClass->JSBridgedType + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + + +
@@ -110,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a5a1eff23..68d1a6d32 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,6 +66,21 @@

+ + +CustomStringConvertible + + +CustomStringConvertible + + + + + +JSBridgedType->CustomStringConvertible + + + JSValueCodable @@ -76,40 +91,25 @@ - + JSBridgedType->JSValueCodable - - -CustomStringConvertible - - -CustomStringConvertible - - - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 68fcb505a..221f30958 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index a5e610ff4..ce198c74f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - - -JSDate->JSBridgedClass + + +JSDate->Comparable - - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - - -JSDate->Comparable + + +JSDate->JSBridgedClass @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 1cdb895fc..0fa30173c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,33 +67,33 @@

- - -JSValueConvertible - + + +CustomStringConvertible + -JSValueConvertible +CustomStringConvertible - - -JSError->JSValueConvertible + + +JSError->CustomStringConvertible - - -CustomStringConvertible - + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible - - -JSError->CustomStringConvertible + + +JSError->JSValueConvertible @@ -107,7 +107,7 @@ - + JSError->Error @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 402123e31..aea177b29 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9b753be85..4084527bd 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index eb5f5dfe1..7cc0b8c2b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,7 +89,7 @@

- + JSObject->Equatable @@ -119,7 +119,7 @@ - + JSFunction->JSObject @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 68f5bf3eb..bbe94d5bc 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 88b9796c3..d8313b851 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->JSValueConstructible @@ -108,7 +108,7 @@ - + JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index eccccb862..6fa648459 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,78 +77,78 @@

- - -JSValueConvertible - + + +ExpressibleByStringLiteral + -JSValueConvertible +ExpressibleByStringLiteral - - -JSString->JSValueConvertible + + +JSString->ExpressibleByStringLiteral - + -Equatable - +LosslessStringConvertible + -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral - + + +JSValueConstructible + -ExpressibleByStringLiteral +JSValueConstructible - - -JSString->ExpressibleByStringLiteral + + +JSString->JSValueConstructible - - -JSValueConstructible - + + +Equatable + -JSValueConstructible +Equatable - + -JSString->JSValueConstructible +JSString->Equatable - - -LosslessStringConvertible - + + +JSValueConvertible + -LosslessStringConvertible +JSValueConvertible - + -JSString->LosslessStringConvertible +JSString->JSValueConvertible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 79abfe139..c9a043cb0 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b6d4749c6..3025cd43b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral + -JSBridgedClass +ExpressibleByArrayLiteral - - -JSTypedArray->JSBridgedClass + + +JSTypedArray->ExpressibleByArrayLiteral @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index be03ae345..f8648a942 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,108 +65,108 @@

- + -ExpressibleByFloatLiteral - +Equatable + -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral - +ExpressibleByNilLiteral + -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCodable - +ExpressibleByFloatLiteral + -JSValueCodable +ExpressibleByFloatLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral - +JSValueCodable + -ExpressibleByIntegerLiteral +JSValueCodable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCodable - + -CustomStringConvertible - +ExpressibleByIntegerLiteral + -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral - +ExpressibleByStringLiteral + -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible @@ -471,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 16d8ad9f5..10e2a9a67 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 504a8d29a..693bdbe74 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -80,33 +80,33 @@

- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->JSValueConstructible +TypedArrayElement->JSValueConstructible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->JSValueConstructible +JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index fd73d045b..13c93fa3e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,18 +65,18 @@
- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConvertible + + +JSPromise->JSValueConvertible @@ -90,7 +90,7 @@
- + JSError->JSValueConvertible @@ -105,23 +105,23 @@ - + TypedArrayElement->JSValueConvertible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConvertible + + +JSString->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 9e939ca9e..435d227a9 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 6454e9fc0..2120b3e10 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->JSValueConstructible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index f68f0391d..f9dd54906 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index cc5de68f2..ee295dc8f 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 1fafa3e63..7e1e611e0 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index e1a649e83..773b3a95c 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index d453f8826..21bda20ae 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 45dc0d546601e272bb5199f1c30a3e64f7612b4f Mon Sep 17 00:00:00 2001 From: j-f1 Date: Thu, 24 Sep 2020 13:45:37 +0000 Subject: [PATCH 020/148] deploy: d9824133fdb001e952af8a9da0156ee7c7a9aaac --- JSArray/index.html | 56 ++++++++++++- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 68 +++++++-------- JSBridgedType/index.html | 26 +++--- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 46 +++++------ JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 +++---- JSString/index.html | 50 ++++++------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++---- JSValue/index.html | 100 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 ++++----- JSValueConvertible/index.html | 68 +++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 317 insertions(+), 265 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 0dd7b91c5..7a338b269 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -46,7 +46,59 @@

- + + + + + + +%3 + + + +JSArray + + +JSArray + + + + + +RandomAccessCollection + + +RandomAccessCollection + + + + + +JSArray->RandomAccessCollection + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSArray->JSBridgedClass + + + + + +
@@ -199,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3a1664c19..0fc5cf62f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 753f90277..d7710f9fa 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0559efcfd..80a378907 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 68d1a6d32..0cc37be31 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,33 +66,33 @@

- + -CustomStringConvertible - +JSValueCodable + -CustomStringConvertible +JSValueCodable - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCodable - + -JSValueCodable - +CustomStringConvertible + -JSValueCodable +CustomStringConvertible - + -JSBridgedType->JSValueCodable +JSBridgedType->CustomStringConvertible @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 221f30958..99c5e54fb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index ce198c74f..8a04227e4 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 0fa30173c..d42ca9b10 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,48 +67,48 @@

- + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSValueConvertible - + + +CustomStringConvertible + -JSValueConvertible +CustomStringConvertible - + -JSError->JSValueConvertible +JSError->CustomStringConvertible - - -Error - + + +JSValueConvertible + -Error +JSValueConvertible - - -JSError->Error + + +JSError->JSValueConvertible @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index aea177b29..1b3a4af9b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4084527bd..ca83f380c 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 7cc0b8c2b..89706f8fc 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,7 +89,7 @@

- + JSObject->Equatable @@ -119,7 +119,7 @@ - + JSFunction->JSObject @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index bbe94d5bc..317b85e64 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d8313b851..49bc27ea1 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 6fa648459..978b7118c 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -87,53 +87,53 @@

- + JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible - +Equatable + -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - - -JSValueConstructible - + + +LosslessStringConvertible + -JSValueConstructible +LosslessStringConvertible - - -JSString->JSValueConstructible + + +JSString->LosslessStringConvertible - - -Equatable - + + +JSValueConstructible + -Equatable +JSValueConstructible - + -JSString->Equatable +JSString->JSValueConstructible @@ -147,7 +147,7 @@ - + JSString->JSValueConvertible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index c9a043cb0..e742fe0f8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 3025cd43b..f87171c9f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -JSBridgedClass - + + +ExpressibleByArrayLiteral + -JSBridgedClass +ExpressibleByArrayLiteral - - -JSTypedArray->JSBridgedClass + + +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - - -JSTypedArray->ExpressibleByArrayLiteral + + +JSTypedArray->JSBridgedClass @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index f8648a942..689bcab82 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,108 +65,108 @@

- + -Equatable - +ExpressibleByIntegerLiteral + -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral - +JSValueCodable + -ExpressibleByNilLiteral +JSValueCodable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCodable - + -ExpressibleByFloatLiteral - +ExpressibleByStringLiteral + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCodable - +Equatable + -JSValueCodable +Equatable - - -JSValue->JSValueCodable + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral - +ExpressibleByNilLiteral + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral - +CustomStringConvertible + -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible - +ExpressibleByFloatLiteral + -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral @@ -471,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 10e2a9a67..aac3a3e2d 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 693bdbe74..e1bc52c2c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,18 +65,18 @@

- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -90,23 +90,23 @@
- + TypedArrayElement->JSValueConstructible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->JSValueConstructible +JSString->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 13c93fa3e..f9d409e14 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConvertible + + +JSString->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - - -JSString->JSValueConvertible + + +JSError->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 435d227a9..55dbae511 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 2120b3e10..d68e7153e 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index f9dd54906..59fe80331 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index ee295dc8f..b44ed9dfc 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 7e1e611e0..d8939e4fc 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 773b3a95c..497768f29 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 21bda20ae..4f0dbfd9b 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 9a7ce988842f6fe327b0d501872eb16e56762cb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Thu, 24 Sep 2020 14:32:12 +0000 Subject: [PATCH 021/148] deploy: 975886641035fa2da4b0af3bd41da04fa42ef996 --- JSArray/index.html | 30 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 64 ++++++++-------- JSBridgedType/index.html | 32 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 34 ++++----- JSError/index.html | 46 ++++++------ JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 ++++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++---- JSString/index.html | 62 ++++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 95 +++++++++--------------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 8 +- JSValueConvertible/index.html | 52 ++++++------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 262 insertions(+), 289 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 7a338b269..c5407134b 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,33 +66,33 @@ - - -RandomAccessCollection - + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass - + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection + -JSBridgedClass +RandomAccessCollection - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0fc5cf62f..5716362d4 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d7710f9fa..c1ab2483e 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 80a378907..627605e47 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 0cc37be31..6535e07e4 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -76,40 +76,40 @@

- + JSBridgedType->JSValueCodable - + CustomStringConvertible - - -CustomStringConvertible + + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 99c5e54fb..0e23ff189 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 8a04227e4..fd94829bf 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - - -JSDate->Comparable + + +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - - -JSDate->JSBridgedClass + + +JSDate->Comparable @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index d42ca9b10..124421543 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,48 +67,48 @@

- + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - - -CustomStringConvertible - + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible - - -JSError->CustomStringConvertible + + +JSError->JSValueConvertible - - -JSValueConvertible - + + +Error + -JSValueConvertible +Error - - -JSError->JSValueConvertible + + +JSError->Error @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1b3a4af9b..363b552b2 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ca83f380c..390f6ad58 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 89706f8fc..ef6dc802a 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,33 +79,33 @@

- + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable @@ -119,7 +119,7 @@
- + JSFunction->JSObject @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 317b85e64..4b8f0e910 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 49bc27ea1..52b0b6575 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 978b7118c..059c84677 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,63 +77,63 @@

- + -ExpressibleByStringLiteral - +Equatable + -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -Equatable - +ExpressibleByStringLiteral + -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible - + + +JSValueConstructible + -LosslessStringConvertible +JSValueConstructible - + -JSString->LosslessStringConvertible +JSString->JSValueConstructible - - -JSValueConstructible - + + +LosslessStringConvertible + -JSValueConstructible +LosslessStringConvertible - - -JSString->JSValueConstructible + + +JSString->LosslessStringConvertible @@ -147,7 +147,7 @@ - + JSString->JSValueConvertible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index e742fe0f8..7b82f0a3b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f87171c9f..208838792 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 689bcab82..edd977d31 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -75,104 +75,77 @@

- + JSValue->ExpressibleByIntegerLiteral - + -JSValueCodable - +CustomStringConvertible + -JSValueCodable +CustomStringConvertible - - -JSValue->JSValueCodable + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral - +JSValueCodable + -ExpressibleByStringLiteral +JSValueCodable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCodable - + -Equatable - +ExpressibleByNilLiteral + -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral - +ExpressibleByFloatLiteral + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible - +Equatable + -CustomStringConvertible - - - - - -JSValue->CustomStringConvertible - - - - - -ExpressibleByFloatLiteral - - -ExpressibleByFloatLiteral - - - - - -JSValue->ExpressibleByFloatLiteral - - - - - - + - + JSPromise->JSValueConstructible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConstructible @@ -105,7 +105,7 @@ - + JSString->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f9d409e14..443014a7c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,18 +65,18 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSError + + +JSError - - -TypedArrayElement->JSValueConvertible + + +JSError->JSValueConvertible @@ -95,33 +95,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->JSValueConvertible +TypedArrayElement->JSValueConvertible - - -JSError - - -JSError + + +JSString + + +JSString - - -JSError->JSValueConvertible + + +JSString->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 55dbae511..3308bf527 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index d68e7153e..a7fb45891 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 59fe80331..735ec5ff7 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index b44ed9dfc..d0a191b4f 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index d8939e4fc..387e63e8b 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 497768f29..47b5a63b1 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 4f0dbfd9b..3c59c701e 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From e9b4d665c5c1fd62d3733bb8135e52e8d1df7aaf Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 24 Sep 2020 17:30:10 +0000 Subject: [PATCH 022/148] deploy: eb7c471d68e7b63b10788b7a0d608b4f1b74089a --- JSArray/index.html | 34 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 41 +---------- JSBridgedClass/index.html | 50 ++++++------- JSBridgedType/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 30 ++++---- JSError/index.html | 46 ++++++------ JSFunction/index.html | 14 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 2 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 +++---- JSString/index.html | 60 +++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 93 +++++++++++++++--------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 54 +++++++------- JSValueConvertible/index.html | 50 ++++++------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 264 insertions(+), 274 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index c5407134b..11fcb6dc0 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,33 +66,33 @@ - - -JSBridgedClass - + + +RandomAccessCollection + -JSBridgedClass +RandomAccessCollection - - -JSArray->JSBridgedClass + + +JSArray->RandomAccessCollection - - -RandomAccessCollection - + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass - - -JSArray->RandomAccessCollection + + +JSArray->JSBridgedClass @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5716362d4..6481a4396 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index c1ab2483e..aa4a67390 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,44 +41,7 @@

- - - - - - -%3 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - - -IteratorProtocol - - - - - -JSArray.Iterator->IteratorProtocol - - - - - - +
@@ -112,7 +75,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 627605e47..32c07218f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,19 +66,34 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + @@ -90,26 +105,11 @@ - + JSTypedArray->JSBridgedClass - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - JSDate @@ -120,7 +120,7 @@ - + JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6535e07e4..7e1edb4c0 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0e23ff189..5bf5ee2f9 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index fd94829bf..8b8ab638a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - + -JSDate->Comparable +JSDate->JSBridgedClass @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 124421543..1faf4aa30 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,48 +67,48 @@

- + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - - -JSValueConvertible - + + +CustomStringConvertible + -JSValueConvertible +CustomStringConvertible - - -JSError->JSValueConvertible + + +JSError->CustomStringConvertible - - -Error - + + +JSValueConvertible + -Error +JSValueConvertible - - -JSError->Error + + +JSError->JSValueConvertible @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 363b552b2..49e1f1931 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 390f6ad58..95e994533 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index ef6dc802a..c9cc9dc3c 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4b8f0e910..164ef6ae6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 52b0b6575..9d0ffb78f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -JSPromise->JSValueConstructible +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSPromise->JSValueConvertible +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 059c84677..8378bbe4e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -87,68 +87,68 @@

- + JSString->Equatable - + -ExpressibleByStringLiteral - +LosslessStringConvertible + -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible - + -LosslessStringConvertible - +ExpressibleByStringLiteral + -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSString->JSValueConvertible + + +JSString->JSValueConstructible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7b82f0a3b..c71c6a15d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 208838792..4e7b34f4b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->ExpressibleByArrayLiteral @@ -91,7 +91,7 @@ - + JSTypedArray->JSBridgedClass @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index edd977d31..717a732fb 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,18 +65,18 @@

- + -ExpressibleByIntegerLiteral - +ExpressibleByFloatLiteral + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -90,62 +90,89 @@
- + JSValue->CustomStringConvertible - + -JSValueCodable - +ExpressibleByNilLiteral + -JSValueCodable +ExpressibleByNilLiteral - + -JSValue->JSValueCodable +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral - +Equatable + -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable - +JSValueCodable + -JSValueCodable + + + + + +JSValue->JSValueCodable + + + + + +ExpressibleByStringLiteral + + +ExpressibleByStringLiteral + + + + + +JSValue->ExpressibleByStringLiteral + + + + + + @@ -444,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5f7f11cc9..545fcdf8a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e6ee78341..fe1f99e35 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,48 +65,48 @@

- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->JSValueConstructible + + +TypedArrayElement->JSValueConstructible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConstructible + + +JSString->JSValueConstructible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 443014a7c..30b3bb575 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,33 +65,33 @@
- - -JSError - - -JSError + + +JSString + + +JSString - + -JSError->JSValueConvertible +JSString->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - + -JSPromise->JSValueConvertible +JSError->JSValueConvertible @@ -105,23 +105,23 @@
- + TypedArrayElement->JSValueConvertible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConvertible + + +JSPromise->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 3308bf527..0a24ebd1e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index a7fb45891..17fdd34ac 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->JSValueConstructible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 735ec5ff7..9c33b6128 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index d0a191b4f..45e113be8 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 387e63e8b..e50377693 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 47b5a63b1..693ede690 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 3c59c701e..2cb9a595d 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 2100f4352894bb92af4b412a3fe47f0b00b461d5 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 25 Sep 2020 09:52:02 +0000 Subject: [PATCH 023/148] deploy: 513075d1cd882261cf679e6bafbaccb446b3737a --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 41 +++++++++- JSBridgedClass/index.html | 48 +++++------ JSBridgedType/index.html | 50 ++++++------ JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 36 ++++---- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 +++--- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 +++--- JSString/index.html | 34 ++++---- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 100 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 48 +++++------ JSValueConvertible/index.html | 68 +++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 294 insertions(+), 257 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 11fcb6dc0..6b2facf82 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6481a4396..52ed7f046 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index aa4a67390..31a53d77c 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,7 +41,44 @@

- + + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + + +IteratorProtocol + + + + + +JSArray.Iterator->IteratorProtocol + + + + + +
@@ -75,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 32c07218f..c72f7f247 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -80,48 +80,48 @@

- + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 7e1edb4c0..c1edf4b59 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,50 +66,50 @@

- - -JSValueCodable - - -JSValueCodable + + +CustomStringConvertible + + +CustomStringConvertible - + -JSBridgedType->JSValueCodable - - +JSBridgedType->CustomStringConvertible + + - + -CustomStringConvertible - +JSValueCodable + -CustomStringConvertible +JSValueCodable - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCodable - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 5bf5ee2f9..d779bd639 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 8b8ab638a..83457c402 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 1faf4aa30..c28d96980 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,18 @@

- - -Error - + + +JSValueConvertible + -Error +JSValueConvertible - - -JSError->Error + + +JSError->JSValueConvertible @@ -92,23 +92,23 @@
- + JSError->CustomStringConvertible - - -JSValueConvertible - + + +Error + -JSValueConvertible +Error - - -JSError->JSValueConvertible + + +JSError->Error @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 49e1f1931..c8d4f6460 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 95e994533..40bb81860 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index c9cc9dc3c..0be4f1098 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,33 +79,33 @@

- + -CustomStringConvertible - +Equatable + -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 164ef6ae6..be04a0f74 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 9d0ffb78f..aab44505e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSPromise->JSValueConvertible +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -JSPromise->JSValueConstructible +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 8378bbe4e..3a11124a4 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -87,23 +87,23 @@

- + JSString->Equatable - + -LosslessStringConvertible - +ExpressibleByStringLiteral + -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral @@ -117,23 +117,23 @@ - + JSString->JSValueConvertible - + -ExpressibleByStringLiteral - +LosslessStringConvertible + -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -147,7 +147,7 @@ - + JSString->JSValueConstructible @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index c71c6a15d..82b675c75 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 4e7b34f4b..e1ecc3993 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->ExpressibleByArrayLiteral @@ -91,7 +91,7 @@ - + JSTypedArray->JSBridgedClass @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 717a732fb..7067c2307 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,108 +65,108 @@

- + -ExpressibleByFloatLiteral - +JSValueCodable + -ExpressibleByFloatLiteral +JSValueCodable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCodable - + -CustomStringConvertible - +ExpressibleByStringLiteral + -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable - +ExpressibleByNilLiteral + -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral - +CustomStringConvertible + -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -JSValueCodable - +ExpressibleByFloatLiteral + -JSValueCodable +ExpressibleByFloatLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral - +Equatable + -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable @@ -471,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 545fcdf8a..311c08cd5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index fe1f99e35..9eec2d934 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,48 +65,48 @@

- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->JSValueConstructible +JSString->JSValueConstructible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->JSValueConstructible +JSPromise->JSValueConstructible - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->JSValueConstructible +TypedArrayElement->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 30b3bb575..e26d2e71c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSError - - -JSError + + +TypedArrayElement + + +TypedArrayElement - - -JSError->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConvertible + + +JSString->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSValueConvertible + + +JSError->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 0a24ebd1e..ce2817fa5 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 17fdd34ac..1ec61508c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 9c33b6128..20a3fcd84 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 45e113be8..d921a3c8a 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index e50377693..5fc86e1b7 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 693ede690..31c0d1a4f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 2cb9a595d..fc1bb6d39 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From e7833c965d25bd066696cb9d20df14b18db4a2f1 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 25 Sep 2020 10:30:54 +0000 Subject: [PATCH 024/148] deploy: 8225581c821a8b65e7a6554a98f93d20d765cb7a --- JSArray/index.html | 34 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 38 ++++----- JSBridgedType/index.html | 32 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 34 ++++---- JSError/index.html | 30 ++++---- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 8 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++---- JSString/index.html | 66 ++++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 30 ++++---- JSValue/index.html | 98 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 ++++----- JSValueConvertible/index.html | 64 ++++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 282 insertions(+), 282 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 6b2facf82..8be80be9a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,33 +66,33 @@ - - -RandomAccessCollection - + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass - - -JSArray->RandomAccessCollection + + +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection + -JSBridgedClass +RandomAccessCollection - - -JSArray->JSBridgedClass + + +JSArray->RandomAccessCollection @@ -251,7 +251,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 52ed7f046..046ed120c 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 31a53d77c..4bf882b79 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index c72f7f247..8cd7ee01f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,7 +75,7 @@

- + JSBridgedClass->JSBridgedType @@ -90,38 +90,38 @@ - + JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index c1edf4b59..ea1a82ea9 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,33 +66,33 @@

- + -CustomStringConvertible - +JSValueCodable + -CustomStringConvertible +JSValueCodable - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCodable - + -JSValueCodable - +CustomStringConvertible + -JSValueCodable +CustomStringConvertible - - -JSBridgedType->JSValueCodable + + +JSBridgedType->CustomStringConvertible @@ -106,7 +106,7 @@ - + JSBridgedClass->JSBridgedType @@ -151,7 +151,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d779bd639..6ca9df31c 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 83457c402..b015e9990 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,33 +71,33 @@

- - -Comparable - + + +JSBridgedClass + -Comparable +JSBridgedClass - - -JSDate->Comparable + + +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable + -JSBridgedClass +Comparable - - -JSDate->JSBridgedClass + + +JSDate->Comparable @@ -431,7 +431,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index c28d96980..b2fc94a1a 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,38 +77,38 @@

- + JSError->JSValueConvertible - + -CustomStringConvertible - +Error + -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - + -Error - +CustomStringConvertible + -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -233,7 +233,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c8d4f6460..ce476f275 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 40bb81860..bf3cc0a90 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 0be4f1098..6bbaf2340 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -89,7 +89,7 @@

- + JSObject->Equatable @@ -104,7 +104,7 @@ - + JSObject->CustomStringConvertible @@ -119,7 +119,7 @@ - + JSFunction->JSObject @@ -255,7 +255,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index be04a0f74..020ca849d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index aab44505e..fb8ba89de 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 3a11124a4..23e743650 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,18 +77,18 @@

- - -Equatable - + + +JSValueConvertible + -Equatable +JSValueConvertible - + -JSString->Equatable +JSString->JSValueConvertible @@ -102,53 +102,53 @@
- + JSString->ExpressibleByStringLiteral - - -JSValueConvertible - + + +LosslessStringConvertible + -JSValueConvertible +LosslessStringConvertible - - -JSString->JSValueConvertible + + +JSString->LosslessStringConvertible - - -LosslessStringConvertible - + + +JSValueConstructible + -LosslessStringConvertible +JSValueConstructible - - -JSString->LosslessStringConvertible + + +JSString->JSValueConstructible - - -JSValueConstructible - + + +Equatable + -JSValueConstructible +Equatable - - -JSString->JSValueConstructible + + +JSString->Equatable @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 82b675c75..65ab36eef 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index e1ecc3993..360466c9d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,33 @@

- - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral + -JSBridgedClass +ExpressibleByArrayLiteral - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -219,7 +219,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 7067c2307..2d6a52fce 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,108 +65,108 @@

- + -JSValueCodable - +Equatable + -JSValueCodable +Equatable - - -JSValue->JSValueCodable + + +JSValue->Equatable - + -ExpressibleByStringLiteral - +JSValueCodable + -ExpressibleByStringLiteral +JSValueCodable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCodable - + -ExpressibleByIntegerLiteral - +ExpressibleByStringLiteral + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral - +ExpressibleByIntegerLiteral + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible - +ExpressibleByFloatLiteral + -CustomStringConvertible +ExpressibleByFloatLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral - +ExpressibleByNilLiteral + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable - +CustomStringConvertible + -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible @@ -471,7 +471,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 311c08cd5..2ad3a4004 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9eec2d934..7ff662bc4 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->JSValueConstructible +JSPromise->JSValueConstructible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConstructible + + +JSString->JSValueConstructible @@ -105,7 +105,7 @@
- + TypedArrayElement->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index e26d2e71c..4383be502 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->JSValueConvertible +TypedArrayElement->JSValueConvertible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->JSValueConvertible +JSString->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - - -JSString->JSValueConvertible + + +JSError->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index ce2817fa5..61741f00a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1ec61508c..15927577b 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -TypedArrayElement->JSValueConvertible +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -TypedArrayElement->JSValueConstructible +TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 20a3fcd84..749ce2f9a 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index d921a3c8a..8c84f25d7 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 5fc86e1b7..1b6b8bb34 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 31c0d1a4f..56b81a6f5 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index fc1bb6d39..2fb2b03e7 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 85e70a37b93e8de40d62e68194cfda149aac518c Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 25 Sep 2020 10:45:01 +0000 Subject: [PATCH 025/148] deploy: 1f9fbe973b4d526d9f7946dd098803f82ab5bc24 --- JSArray/index.html | 5 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 41 +------------ JSBridgedClass/index.html | 64 ++++++++++---------- JSBridgedType/index.html | 34 +++++------ JSClosure/index.html | 2 +- JSDate/index.html | 5 +- JSError/index.html | 12 +--- JSFunction/index.html | 10 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 48 +++++++-------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 +++++----- JSString/index.html | 69 ++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 31 +++++----- JSValue/index.html | 75 +++++++++--------------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 6 +- JSValueConvertible/index.html | 52 ++++++++-------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 219 insertions(+), 313 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 8be80be9a..cf5231ca5 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -84,11 +84,8 @@ RandomAccessCollection - RandomAccessCollection - - @@ -251,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 046ed120c..5ded9baf0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 4bf882b79..fccb1662a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,44 +41,7 @@

- - - - - - -%3 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - - -IteratorProtocol - - - - - -JSArray.Iterator->IteratorProtocol - - - - - - +
@@ -112,7 +75,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 8cd7ee01f..a94a103b4 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass - - +JSDate->JSBridgedClass + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass - - + + - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index ea1a82ea9..2eb3cbb4f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,33 +66,27 @@

- + -JSValueCodable - +CustomStringConvertible -JSValueCodable - - +CustomStringConvertible - - -JSBridgedType->JSValueCodable + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible - +JSValueCodable -CustomStringConvertible - +JSValueCodable - - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCodable @@ -106,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -151,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6ca9df31c..dab1923ac 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index b015e9990..3201e3088 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -89,11 +89,8 @@

Comparable - Comparable - - @@ -431,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index b2fc94a1a..93e0266ee 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->JSValueConvertible @@ -85,11 +85,8 @@ Error - Error - - @@ -100,14 +97,11 @@ CustomStringConvertible - CustomStringConvertible - - - + JSError->CustomStringConvertible @@ -233,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ce476f275..88b701b19 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index bf3cc0a90..5f211133f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 6bbaf2340..241d24a3d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,50 +79,44 @@

+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + Equatable - Equatable - - - + JSObject->Equatable - - -CustomStringConvertible - - -CustomStringConvertible - - - - - -JSObject->CustomStringConvertible - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -255,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 020ca849d..f886b8f28 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index fb8ba89de..a60debb02 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 23e743650..588351112 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,78 +77,69 @@

- - -JSValueConvertible - + + +ExpressibleByStringLiteral -JSValueConvertible - - +ExpressibleByStringLiteral - - -JSString->JSValueConvertible + + +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral - +Equatable -ExpressibleByStringLiteral - - +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable LosslessStringConvertible - LosslessStringConvertible - - - + JSString->LosslessStringConvertible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible - - -Equatable - + + +JSValueConstructible + -Equatable +JSValueConstructible - - -JSString->Equatable + + +JSString->JSValueConstructible @@ -265,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 65ab36eef..2dc665e38 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 360466c9d..d7b7c32eb 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,33 +66,30 @@

- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral - + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass - + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -219,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 2d6a52fce..6dfc147ba 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -68,56 +68,44 @@

Equatable - Equatable - - - + JSValue->Equatable - + -JSValueCodable - +ExpressibleByNilLiteral -JSValueCodable - - +ExpressibleByNilLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral - +CustomStringConvertible -ExpressibleByStringLiteral - - +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible ExpressibleByIntegerLiteral - ExpressibleByIntegerLiteral - - @@ -128,45 +116,36 @@ ExpressibleByFloatLiteral - ExpressibleByFloatLiteral - - - + JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral - +ExpressibleByStringLiteral -ExpressibleByNilLiteral - +ExpressibleByStringLiteral - - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible - +JSValueCodable -CustomStringConvertible - +JSValueCodable - - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCodable @@ -471,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 2ad3a4004..66a76e3c9 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 7ff662bc4..29ca3ae54 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -75,7 +75,7 @@

- + JSPromise->JSValueConstructible @@ -105,7 +105,7 @@ - + TypedArrayElement->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 4383be502..755413fe4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -75,53 +75,53 @@
- + TypedArrayElement->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - - -JSString->JSValueConvertible + + +JSError->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->JSValueConvertible +JSString->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 61741f00a..943dd5f93 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 15927577b..02d7b99b4 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -TypedArrayElement->JSValueConstructible +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -TypedArrayElement->JSValueConvertible +TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 749ce2f9a..40f1c4378 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 8c84f25d7..6c4915b35 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 1b6b8bb34..be1a571a4 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 56b81a6f5..4c5aa824f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 2fb2b03e7..7475759bf 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 42de697533b9ce0855b968648d228e990898e876 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 25 Sep 2020 13:09:31 +0000 Subject: [PATCH 026/148] deploy: ee6699b41f68ff00c6ae46fd4405462490b44996 --- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 38 ++++++++++- JSBridgedClass/index.html | 54 +++++++-------- JSBridgedType/index.html | 65 +----------------- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 22 +++--- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 +++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 70 +++++++++---------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 86 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 40 +++++------ JSValueConvertible/index.html | 50 +++++++------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 250 insertions(+), 277 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index cf5231ca5..17e219f10 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@ - + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5ded9baf0..178760be2 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index fccb1662a..6199a8ed9 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,7 +41,41 @@

- + + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + +IteratorProtocol + + + +JSArray.Iterator->IteratorProtocol + + + + + +
@@ -75,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a94a103b4..fa610e071 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,64 +66,64 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 2eb3cbb4f..c10e41633 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -46,68 +46,7 @@

- - - - - - -%3 - - - -JSBridgedType - - -JSBridgedType - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - - -JSValueCodable - -JSValueCodable - - - -JSBridgedType->JSValueCodable - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedClass->JSBridgedType - - - - - - +
@@ -145,7 +84,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index dab1923ac..b828d6168 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 3201e3088..5fbc2d879 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -81,7 +81,7 @@

- + JSDate->JSBridgedClass @@ -93,7 +93,7 @@ Comparable - + JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 93e0266ee..662d79d0b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -82,27 +82,27 @@

- + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 88b701b19..b9e268177 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 5f211133f..4a018645e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 241d24a3d..213b6e4f1 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,27 +79,27 @@

- + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f886b8f28..11b73f771 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a60debb02..fccb189cb 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 588351112..7ff59caf5 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - + -JSString->ExpressibleByStringLiteral +JSString->LosslessStringConvertible - - -Equatable + + +JSValueConstructible + -Equatable +JSValueConstructible + - + + -JSString->Equatable +JSString->JSValueConstructible - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - - -JSValueConvertible - + + +ExpressibleByStringLiteral -JSValueConvertible - - +ExpressibleByStringLiteral - - -JSString->JSValueConvertible + + +JSString->ExpressibleByStringLiteral - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2dc665e38..40a3bfc28 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d7b7c32eb..0c22d756d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 6dfc147ba..fffc5a2da 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +JSValueCodable -ExpressibleByStringLiteral +JSValueCodable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCodable - + -JSValueCodable +ExpressibleByIntegerLiteral -JSValueCodable +ExpressibleByIntegerLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 66a76e3c9..22d2323f2 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 29ca3ae54..e439b7b7e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConstructible + + +JSString->JSValueConstructible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -105,7 +105,7 @@ - + TypedArrayElement->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 755413fe4..59f2ca87a 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -80,48 +80,48 @@
- + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->JSValueConvertible +JSString->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - - -JSString->JSValueConvertible + + +JSError->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 943dd5f93..db0993ad9 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 02d7b99b4..214115798 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 40f1c4378..e72251af9 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 6c4915b35..7cdba4c90 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index be1a571a4..ba6893ad7 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 4c5aa824f..7bdc10c5f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 7475759bf..4098daf39 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 21b2a078ef9b471262d184706708a7e9f75321af Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 25 Sep 2020 13:10:32 +0000 Subject: [PATCH 027/148] deploy: 07e687b0b57fe69725387627a9d35fdf7f202542 --- JSArray/index.html | 6 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 34 ++++++------- JSBridgedType/index.html | 65 +++++++++++++++++++++++- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 36 ++++++------- JSFunction/index.html | 10 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 +++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +-- JSString/index.html | 62 +++++++++++----------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++++------- JSValue/index.html | 62 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 40 +++++++-------- JSValueConvertible/index.html | 64 +++++++++++------------ JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 271 insertions(+), 210 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 17e219f10..627d43276 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@ - + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 178760be2..4b5b76ba5 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 6199a8ed9..9b9e7316b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index fa610e071..c0a81b6e3 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,38 +75,38 @@

- + JSBridgedClass->JSBridgedType - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index c10e41633..45bed8b96 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -46,7 +46,68 @@

- + + + + + + +%3 + + + +JSBridgedType + + +JSBridgedType + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + + + +JSValueCodable + +JSValueCodable + + + +JSBridgedType->JSValueCodable + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedClass->JSBridgedType + + + + + +
@@ -84,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b828d6168..16bde6250 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 5fbc2d879..72cd8fdbc 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 662d79d0b..a0450524c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,30 +67,30 @@

- - -JSValueConvertible - + + +CustomStringConvertible -JSValueConvertible - - +CustomStringConvertible - + -JSError->JSValueConvertible +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible + - - -JSError->CustomStringConvertible + + + +JSError->JSValueConvertible @@ -101,7 +101,7 @@ Error - + JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b9e268177..863800fe5 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4a018645e..68cb00f2f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 213b6e4f1..71caa0dd0 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,37 +86,37 @@

Equatable
- + JSObject->Equatable - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 11b73f771..bfdbb7421 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index fccb189cb..96babc7ce 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->JSValueConstructible @@ -108,7 +108,7 @@ - + JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 7ff59caf5..a21d414aa 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,54 +77,54 @@

- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -JSValueConstructible - + + +LosslessStringConvertible -JSValueConstructible - +LosslessStringConvertible - - - -JSString->JSValueConstructible + + +JSString->LosslessStringConvertible - - -Equatable + + +JSValueConstructible + -Equatable +JSValueConstructible + - - -JSString->Equatable + + + +JSString->JSValueConstructible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -138,7 +138,7 @@ - + JSString->JSValueConvertible @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 40a3bfc28..b6a61d3a6 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0c22d756d..967d726a8 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index fffc5a2da..6169f5953 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -77,63 +77,63 @@

- + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +JSValueCodable -ExpressibleByStringLiteral +JSValueCodable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCodable - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCodable +ExpressibleByFloatLiteral -JSValueCodable +ExpressibleByFloatLiteral - + -JSValue->JSValueCodable +JSValue->ExpressibleByFloatLiteral @@ -144,7 +144,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 22d2323f2..a5705a1fd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e439b7b7e..d60559b0c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -75,38 +75,38 @@

- + JSString->JSValueConstructible - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->JSValueConstructible + + +TypedArrayElement->JSValueConstructible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 59f2ca87a..865718e2f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->JSValueConvertible +JSString->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - + -JSPromise->JSValueConvertible +JSError->JSValueConvertible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSError - - -JSError + + +TypedArrayElement + + +TypedArrayElement - - -JSError->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index db0993ad9..63a37807f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 214115798..641ef0e8c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->JSValueConvertible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index e72251af9..9358c7f5b 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 7cdba4c90..71ffb99e4 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index ba6893ad7..8354efc01 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 7bdc10c5f..f844a9173 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 4098daf39..bdd13d360 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 827260f2ebfc03342ae527728b60fe43136bb092 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 25 Sep 2020 14:25:31 +0000 Subject: [PATCH 028/148] deploy: 50649faec285bf07cd91e92da4600a191b8ae212 --- JSArray/index.html | 32 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 60 ++++++++++---------- JSBridgedType/index.html | 38 ++++++------- JSClosure/index.html | 2 +- JSDate/index.html | 32 +++++------ JSError/index.html | 36 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 +++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 70 ++++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 56 +++++++++---------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 6 +- JSValueConvertible/index.html | 62 ++++++++++----------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 233 insertions(+), 233 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 627d43276..2b9d7067c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 4b5b76ba5..0d0379951 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9b9e7316b..3e6790281 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index c0a81b6e3..08289ea93 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,34 +66,19 @@

- + JSBridgedType - - -JSBridgedType - - - - - -JSBridgedClass->JSBridgedType - - - - - -JSArray - + -JSArray +JSBridgedType - + -JSArray->JSBridgedClass - - +JSBridgedClass->JSBridgedType + + @@ -105,26 +90,41 @@ - + JSDate->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 45bed8b96..708a7b5a1 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,43 +67,43 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCodable - -JSValueCodable + +JSValueCodable JSBridgedType->JSValueCodable - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 16bde6250..3d9357099 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 72cd8fdbc..793bc7f57 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index a0450524c..68e38b124 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -74,35 +74,35 @@

CustomStringConvertible
- + JSError->CustomStringConvertible - - -JSValueConvertible - + + +Error -JSValueConvertible - - +Error - - -JSError->JSValueConvertible + + +JSError->Error - - -Error + + +JSValueConvertible + -Error +JSValueConvertible + - + + -JSError->Error +JSError->JSValueConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 863800fe5..832ea922b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 68cb00f2f..c80d13fe8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 71caa0dd0..70eab5d72 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,37 +86,37 @@

Equatable
- + JSObject->Equatable - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index bfdbb7421..0a07315c7 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 96babc7ce..5ca5628b2 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->JSValueConstructible @@ -108,7 +108,7 @@ - + JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index a21d414aa..549dd4cf0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible JSString->LosslessStringConvertible - - + + - + JSValueConstructible - - -JSValueConstructible + + +JSValueConstructible - + JSString->JSValueConstructible - - + + - + Equatable - -Equatable + +Equatable - + JSString->Equatable - - + + - + JSValueConvertible - - -JSValueConvertible + + +JSValueConvertible JSString->JSValueConvertible + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b6a61d3a6..fbb2b6c20 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 967d726a8..01c7fafa5 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 6169f5953..8e6e915dd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -72,32 +72,32 @@

CustomStringConvertible
- + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCodable +ExpressibleByNilLiteral -JSValueCodable +ExpressibleByNilLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByNilLiteral @@ -108,7 +108,7 @@ Equatable - + JSValue->Equatable @@ -120,32 +120,32 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +JSValueCodable -ExpressibleByIntegerLiteral +JSValueCodable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCodable @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a5705a1fd..46ab212dd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d60559b0c..e472e5c57 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -75,7 +75,7 @@

- + JSString->JSValueConstructible @@ -105,7 +105,7 @@ - + JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 865718e2f..d2ded70f4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSValueConvertible + + +JSError->JSValueConvertible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConvertible + + +JSString->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 63a37807f..cd002fce8 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 641ef0e8c..d35d76d8c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->JSValueConvertible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 9358c7f5b..2d85c0246 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 71ffb99e4..cf728bf09 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 8354efc01..cb1b2f0b1 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index f844a9173..dea7b94a6 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index bdd13d360..40a231aa7 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From ed75eae50dded466cb22512819ec3cc349bc9765 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 25 Sep 2020 14:26:44 +0000 Subject: [PATCH 029/148] deploy: 42ae818683c53fe0ae00a5827d1beaf0eef95cc9 --- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 64 ++++++++++---------- JSBridgedType/index.html | 42 ++++++------- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 42 ++++++------- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 ++++++------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 ++++---- JSString/index.html | 58 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 76 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 6 +- JSValueConvertible/index.html | 66 ++++++++++---------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 238 insertions(+), 238 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 2b9d7067c..a6b812e7d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -73,7 +73,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -88,7 +88,7 @@ - + JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0d0379951..6e29436f3 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3e6790281..21b1163fe 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 08289ea93..fa50bdf7b 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - - -JSDate - - -JSDate + + +JSArray + + +JSArray - - -JSDate->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 708a7b5a1..fd86cad81 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,18 +66,6 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - JSValueCodable @@ -85,25 +73,37 @@ JSValueCodable - + JSBridgedType->JSValueCodable + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 3d9357099..284e8b059 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 793bc7f57..d865885c9 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 68e38b124..771887015 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -CustomStringConvertible + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible + - + + -JSError->CustomStringConvertible +JSError->JSValueConvertible - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - - -JSValueConvertible - + + +Error -JSValueConvertible - +Error - - + -JSError->JSValueConvertible +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 832ea922b..02e9c4cad 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index c80d13fe8..c7d516fa6 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 70eab5d72..52a26db7e 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,18 +79,6 @@

- - -Equatable - -Equatable - - - -JSObject->Equatable - - - CustomStringConvertible @@ -103,20 +91,32 @@ + + +Equatable + +Equatable + + + +JSObject->Equatable + + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 0a07315c7..6a29a66f6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 5ca5628b2..5befbcbf5 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -JSPromise->JSValueConstructible +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSPromise->JSValueConvertible +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 549dd4cf0..a56b2d33b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,15 +77,15 @@

- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral @@ -99,47 +99,47 @@ - + JSString->JSValueConstructible - - -Equatable + + +JSValueConvertible + -Equatable +JSValueConvertible + - + + -JSString->Equatable +JSString->JSValueConvertible - - -JSValueConvertible - + + +Equatable -JSValueConvertible - +Equatable - - + -JSString->JSValueConvertible +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index fbb2b6c20..7c8ee24e1 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 01c7fafa5..6b8fc65a9 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -73,7 +73,7 @@

ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -88,7 +88,7 @@ - + JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 8e6e915dd..2e3d9b2fe 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,75 +65,75 @@

- + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -144,7 +144,7 @@ JSValueCodable - + JSValue->JSValueCodable @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 46ab212dd..7ab1b14a3 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e472e5c57..c89686a7f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -75,7 +75,7 @@

- + JSString->JSValueConstructible @@ -105,7 +105,7 @@ - + JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d2ded70f4..0855bd81f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConvertible + + +JSString->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSValueConvertible + + +JSError->JSValueConvertible - - -JSError - - -JSError + + +TypedArrayElement + + +TypedArrayElement - - -JSError->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->JSValueConvertible +JSPromise->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index cd002fce8..c8c6b6432 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index d35d76d8c..6cbc9ab37 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->JSValueConvertible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 2d85c0246..f5e262768 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index cf728bf09..2d2b33aec 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index cb1b2f0b1..146576ede 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index dea7b94a6..365db2edf 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 40a231aa7..fb453f0cb 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 57e7011dc76cfb57f069af0d50f7836f632cb3e0 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 25 Sep 2020 22:26:06 +0000 Subject: [PATCH 030/148] deploy: 4f0408d9c86124ea254d1cd8d56cfaab571a76d9 --- JSArray/index.html | 34 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 86 +----------------------- JSBridgedType/index.html | 42 ++++++------ JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 36 +++++----- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 +++---- JSString/index.html | 66 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 74 ++++++++++---------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 +++++----- JSValueConvertible/index.html | 68 +++++++++---------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 265 insertions(+), 347 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index a6b812e7d..c64f5f8fc 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6e29436f3..72dc0bd9a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 21b1163fe..ee5c5d3ff 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index fa50bdf7b..38c308783 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -45,89 +45,7 @@

- - - - - - -%3 - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedType - - -JSBridgedType - - - - - -JSBridgedClass->JSBridgedType - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - - - +
@@ -192,7 +110,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fd86cad81..7779e14eb 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,6 +66,18 @@

+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + JSValueCodable @@ -73,37 +85,25 @@ JSValueCodable - + JSBridgedType->JSValueCodable - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 284e8b059..d193c847f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index d865885c9..a2d87145a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 771887015..a69418b92 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,15 @@

- - -JSValueConvertible - + + +Error -JSValueConvertible - - +Error - - -JSError->JSValueConvertible + + +JSError->Error @@ -89,20 +86,23 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -Error + + +JSValueConvertible + -Error +JSValueConvertible + - + + -JSError->Error +JSError->JSValueConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 02e9c4cad..263057aac 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index c7d516fa6..6b8a70091 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 52a26db7e..b52d7159f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + CustomStringConvertible @@ -91,32 +103,20 @@ - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 6a29a66f6..a872ea338 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 5befbcbf5..f94f17771 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSPromise->JSValueConvertible +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -JSPromise->JSValueConstructible +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index a56b2d33b..2325514ff 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSString->JSValueConvertible + + +JSString->JSValueConstructible - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7c8ee24e1..52508d9e4 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6b8fc65a9..21900fca1 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 2e3d9b2fe..fc0cf44ed 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,27 +65,27 @@

- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral @@ -96,56 +96,56 @@ Equatable - + JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCodable -ExpressibleByFloatLiteral +JSValueCodable - + -JSValue->ExpressibleByFloatLiteral +JSValue->JSValueCodable - + -JSValueCodable +ExpressibleByStringLiteral -JSValueCodable +ExpressibleByStringLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByStringLiteral @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7ab1b14a3..644b4d26f 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index c89686a7f..8359b2a0c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->JSValueConstructible +TypedArrayElement->JSValueConstructible - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->JSValueConstructible + + +JSString->JSValueConstructible @@ -105,7 +105,7 @@
- + JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 0855bd81f..dcfa3a460 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - - -JSError - - -JSError + + +JSString + + +JSString - - -JSError->JSValueConvertible + + +JSString->JSValueConvertible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->JSValueConvertible + + +JSPromise->JSValueConvertible - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSValueConvertible + + +JSError->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index c8c6b6432..4f9da5f19 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 6cbc9ab37..5cd32e384 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index f5e262768..3e36f9742 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 2d2b33aec..be76cd368 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 146576ede..382303a82 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 365db2edf..e2c778eb3 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index fb453f0cb..16eb603ed 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From d0cb6721abdeda07101001767077ce2faac30836 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sat, 26 Sep 2020 18:46:48 +0000 Subject: [PATCH 031/148] deploy: 317bab3ade366f7e94b23a1e3fe4a0f28debf683 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 38 +---------- JSBridgedClass/index.html | 86 +++++++++++++++++++++++- JSBridgedType/index.html | 28 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 42 ++++++------ JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 +++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++----- JSString/index.html | 78 ++++++++++----------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 74 ++++++++++---------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 +++++------ JSValueConvertible/index.html | 52 +++++++------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 309 insertions(+), 261 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index c64f5f8fc..8e18e35b9 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 72dc0bd9a..873da6cc5 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ee5c5d3ff..fad7ecb96 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,41 +41,7 @@

- - - - - - -%3 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - -IteratorProtocol - - - -JSArray.Iterator->IteratorProtocol - - - - - - +
@@ -109,7 +75,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 38c308783..a6d6529ac 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -45,7 +45,89 @@

- + + + + + + +%3 + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedType + + +JSBridgedType + + + + + +JSBridgedClass->JSBridgedType + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + + +
@@ -110,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 7779e14eb..61428b597 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -79,31 +79,31 @@

- + JSValueCodable - -JSValueCodable + +JSValueCodable - + JSBridgedType->JSValueCodable - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d193c847f..e86181ce5 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index a2d87145a..f33c176a3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index a69418b92..6cb5bd7b1 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error + + +JSValueConvertible + -Error +JSValueConvertible + - + + -JSError->Error +JSError->JSValueConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - - -JSValueConvertible - + + +CustomStringConvertible -JSValueConvertible - +CustomStringConvertible - - + -JSError->JSValueConvertible +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 263057aac..1c1377c09 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 6b8a70091..181e36e3a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index b52d7159f..b1c075481 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,27 +79,27 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable @@ -113,7 +113,7 @@
- + JSFunction->JSObject @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a872ea338..263880b27 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index f94f17771..09f3e0600 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 2325514ff..6b0b16279 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -Equatable + + +JSValueConstructible + -Equatable +JSValueConstructible + - - -JSString->Equatable + + + +JSString->JSValueConstructible - - -JSValueConvertible - + + +ExpressibleByStringLiteral -JSValueConvertible - - +ExpressibleByStringLiteral - + -JSString->JSValueConvertible +JSString->ExpressibleByStringLiteral - - -JSValueConstructible - + + +LosslessStringConvertible -JSValueConstructible - +LosslessStringConvertible - - + -JSString->JSValueConstructible +JSString->LosslessStringConvertible - - -LosslessStringConvertible + + +JSValueConvertible + -LosslessStringConvertible +JSValueConvertible + - - -JSString->LosslessStringConvertible + + + +JSString->JSValueConvertible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 52508d9e4..84977c16b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 21900fca1..1b2fd8317 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index fc0cf44ed..5240ae0cc 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,27 +65,27 @@

- + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -96,56 +96,56 @@ Equatable - + JSValue->Equatable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCodable +ExpressibleByIntegerLiteral -JSValueCodable +ExpressibleByIntegerLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +JSValueCodable -ExpressibleByStringLiteral +JSValueCodable - + -JSValue->ExpressibleByStringLiteral +JSValue->JSValueCodable @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 644b4d26f..95f7cf083 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 8359b2a0c..1e9cb3c7a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,18 +65,18 @@

- - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -95,18 +95,18 @@ - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->JSValueConstructible + + +TypedArrayElement->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index dcfa3a460..9dc1b4100 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -75,53 +75,53 @@
- + TypedArrayElement->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - - -JSString->JSValueConvertible + + +JSError->JSValueConvertible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->JSValueConvertible +JSString->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4f9da5f19..10fd8740c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 5cd32e384..8798d1614 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -TypedArrayElement->JSValueConstructible + + +TypedArrayElement->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -TypedArrayElement->JSValueConvertible + + +TypedArrayElement->JSValueConstructible @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 3e36f9742..86fecb6a8 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index be76cd368..686f967bc 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 382303a82..5687b3b77 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index e2c778eb3..80a65ba4f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 16eb603ed..6d454ca43 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From e621d16765133412f33a6b0d56842559b2c69137 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 27 Sep 2020 00:31:58 +0000 Subject: [PATCH 032/148] deploy: e5981ccd72feb9c5e7ddf485a64dd46ba872a666 --- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 38 ++++++++++- JSBridgedClass/index.html | 38 +++++------ JSBridgedType/index.html | 8 +-- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++----- JSError/index.html | 36 +++++----- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 36 +++++----- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 86 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 +++++------ JSValueConvertible/index.html | 52 +++++++------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 260 insertions(+), 226 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 8e18e35b9..b1745cc4c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@ - + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 873da6cc5..67b4d4ef1 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index fad7ecb96..92af57f0d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -41,7 +41,41 @@

- + + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + +IteratorProtocol + + + +JSArray.Iterator->IteratorProtocol + + + + + +
@@ -75,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a6d6529ac..9c9fb4cea 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,23 +75,23 @@

- + JSBridgedClass->JSBridgedType - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -105,23 +105,23 @@ - + JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 61428b597..3055ffd69 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -73,7 +73,7 @@

CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -85,7 +85,7 @@ JSValueCodable - + JSBridgedType->JSValueCodable @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e86181ce5..93860b034 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index f33c176a3..7b3981871 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 6cb5bd7b1..b439cf7c5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,30 +67,30 @@

- - -JSValueConvertible - + + +Error -JSValueConvertible - - +Error - + -JSError->JSValueConvertible +JSError->Error - - -Error + + +JSValueConvertible + -Error +JSValueConvertible + - - -JSError->Error + + + +JSError->JSValueConvertible @@ -101,7 +101,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1c1377c09..14122f117 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 181e36e3a..03769277d 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index b1c075481..0a76cd887 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,18 +79,6 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Equatable @@ -98,25 +86,37 @@ Equatable - + JSObject->Equatable + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 263880b27..590d95cec 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 09f3e0600..d730814d4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->JSValueConvertible @@ -108,7 +108,7 @@ - + JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 6b0b16279..86d1ad7d7 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,18 +77,18 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible @@ -99,7 +99,7 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral @@ -111,23 +111,23 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSString->JSValueConvertible + + +JSString->JSValueConstructible @@ -138,7 +138,7 @@ Equatable - + JSString->Equatable @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 84977c16b..7e30e5247 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 1b2fd8317..bc5cf64d3 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 5240ae0cc..088a37b92 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -ExpressibleByNilLiteral +JSValueCodable -ExpressibleByNilLiteral +JSValueCodable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCodable - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -JSValueCodable +Equatable -JSValueCodable +Equatable - - -JSValue->JSValueCodable + + +JSValue->Equatable @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 95f7cf083..85928dadb 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 1e9cb3c7a..3575275aa 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConstructible + + +JSString->JSValueConstructible - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 9dc1b4100..042ac7b00 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,48 +65,48 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSError + + +JSError - + -TypedArrayElement->JSValueConvertible +JSError->JSValueConvertible - - -JSError - - -JSError + + +JSString + + +JSString - + -JSError->JSValueConvertible +JSString->JSValueConvertible - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -120,7 +120,7 @@
- + JSPromise->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 10fd8740c..f7405b26a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 8798d1614..3597c2eaf 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 86fecb6a8..b0194a609 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 686f967bc..d3332c009 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 5687b3b77..1f9a52769 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 80a65ba4f..9a5bb59cc 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 6d454ca43..4de4779a8 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 84dc68ed4aba9b04fef5d5fd94e3fe9639dc4994 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 27 Sep 2020 14:53:06 +0000 Subject: [PATCH 033/148] deploy: 29fb15f92a9e657f14e559fcb4364d063042e1b4 --- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 38 +++++------ JSBridgedType/index.html | 30 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++----- JSError/index.html | 48 +++++++------- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 26 ++++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++----- JSString/index.html | 52 +++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 82 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 +++++----- JSValueConvertible/index.html | 72 ++++++++++----------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +--------------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 260 insertions(+), 312 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index b1745cc4c..45ad35d5d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 67b4d4ef1..fd207d69b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 92af57f0d..b2862c04f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 9c9fb4cea..846c7df59 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,49 +66,49 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass - - + + @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 3055ffd69..fcf49ea79 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -85,25 +85,25 @@ JSValueCodable - + JSBridgedType->JSValueCodable - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 93860b034..b9c62ccdd 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 7b3981871..8cbaebe7b 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index b439cf7c5..3dc999430 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - - -JSValueConvertible - + + +Error -JSValueConvertible - +Error - - - -JSError->JSValueConvertible + + +JSError->Error - - -CustomStringConvertible + + +JSValueConvertible + -CustomStringConvertible +JSValueConvertible + - - -JSError->CustomStringConvertible + + + +JSError->JSValueConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 14122f117..9d63735b0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 03769277d..75ff4583c 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 0a76cd887..7ed667eb8 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,27 +79,27 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable @@ -113,7 +113,7 @@
- + JSFunction->JSObject @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 590d95cec..49e0abf7b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d730814d4..2898ebae0 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 86d1ad7d7..3f2589eef 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,18 +77,15 @@

- - -JSValueConvertible - + + +LosslessStringConvertible -JSValueConvertible - +LosslessStringConvertible - - - -JSString->JSValueConvertible + + +JSString->LosslessStringConvertible @@ -99,20 +96,20 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -126,20 +123,23 @@ - + JSString->JSValueConstructible - - -Equatable + + +JSValueConvertible + -Equatable +JSValueConvertible + - - -JSString->Equatable + + + +JSString->JSValueConvertible @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7e30e5247..38caff9a8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index bc5cf64d3..7fb9da75d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index 088a37b92..e8852f8e8 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -JSValueCodable +ExpressibleByNilLiteral -JSValueCodable +ExpressibleByNilLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +JSValueCodable -ExpressibleByNilLiteral +JSValueCodable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCodable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 85928dadb..790beba54 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 3575275aa..b0e89eefd 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->JSValueConstructible +JSPromise->JSValueConstructible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->JSValueConstructible +JSString->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 042ac7b00..9119c2a58 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSError - - -JSError + + +JSString + + +JSString - - -JSError->JSValueConvertible + + +JSString->JSValueConvertible - - -JSString - - -JSString + + +JSError + + +JSError - + -JSString->JSValueConvertible +JSError->JSValueConvertible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->JSValueConvertible + + +TypedArrayElement->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index f7405b26a..7653f6c34 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 3597c2eaf..4e6bbdae6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,59 +45,7 @@

- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -JSValueConvertible - - -JSValueConvertible - - - - - -TypedArrayElement->JSValueConvertible - - - - - -JSValueConstructible - - -JSValueConstructible - - - - - -TypedArrayElement->JSValueConstructible - - - - - - +
@@ -133,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index b0194a609..5f8dfc1c2 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index d3332c009..b7ffa1b85 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index 1f9a52769..dd5d8d27f 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9a5bb59cc..0da9f6212 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 4de4779a8..b70eac4d7 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From a47e5ff19e11f8ab1fe1b24e99c577f62f49e6c4 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Mon, 28 Sep 2020 15:03:40 +0000 Subject: [PATCH 034/148] deploy: 6e84a7003071ed3e9fa7f8d8266a272a36b84608 --- JSArray/index.html | 34 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 68 ++++++++--------- JSBridgedType/index.html | 6 +- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++---- JSError/index.html | 28 +++---- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 42 +++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++---- JSString/index.html | 72 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 97 +++++++++++------------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 +++++----- JSValueConvertible/index.html | 68 ++++++++--------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 327 insertions(+), 286 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 45ad35d5d..7b796a2bb 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index fd207d69b..f9ba32d1d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index b2862c04f..eb8604657 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 846c7df59..0cba43e1d 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fcf49ea79..d7a725753 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -85,7 +85,7 @@

JSValueCodable
- + JSBridgedType->JSValueCodable @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b9c62ccdd..6eec8748b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSDate/index.html b/JSDate/index.html index 8cbaebe7b..f596a0a89 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSError/index.html b/JSError/index.html index 3dc999430..c7c1767f3 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,27 +67,27 @@

- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSError->JSValueConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 9d63735b0..0cc5bd8cb 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 75ff4583c..65ed30daf 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObject/index.html b/JSObject/index.html index 7ed667eb8..64db0b2c3 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + CustomStringConvertible @@ -86,37 +98,25 @@ CustomStringConvertible - + JSObject->CustomStringConvertible - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 49e0abf7b..ac470438d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2898ebae0..015017e5e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSPromise->JSValueConstructible + + +JSPromise->JSValueConvertible - + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - - -JSPromise->JSValueConvertible + + +JSPromise->JSValueConstructible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSString/index.html b/JSString/index.html index 3f2589eef..5d016384e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +JSValueConstructible + -ExpressibleByStringLiteral +JSValueConstructible + - - -JSString->ExpressibleByStringLiteral + + + +JSString->JSValueConstructible - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible - - -JSValueConvertible - + + +Equatable -JSValueConvertible - - +Equatable - + -JSString->JSValueConvertible +JSString->Equatable @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 38caff9a8..528f95d60 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 7fb9da75d..8cf46ba00 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValue/index.html b/JSValue/index.html index e8852f8e8..fc404d52b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -65,27 +65,27 @@

- + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -JSValueCodable +ExpressibleByIntegerLiteral -JSValueCodable +ExpressibleByIntegerLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByIntegerLiteral @@ -96,75 +96,64 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByNilLiteral - + -Equatable +JSValueCodable -Equatable +JSValueCodable - - -JSValue->Equatable + + +JSValue->JSValueCodable - + -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSValue->ExpressibleByStringLiteral - - - - - - +ExpressibleByFloatLiteral +CustomStringConvertible -
Equatable
-
ExpressibleByFloatLiteral
-
ExpressibleByIntegerLiteral
-
ExpressibleByNilLiteral
-
ExpressibleByStringLiteral
-
JSValueCodable
-

+
CustomStringConvertible
+
Equatable
+
ExpressibleByFloatLiteral
+
ExpressibleByIntegerLiteral
+
ExpressibleByNilLiteral
+
ExpressibleByStringLiteral
+
JSValueCodable
+
]

Initializers

@@ -450,7 +439,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 790beba54..bf455956b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index b0e89eefd..ad76912a0 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,18 +65,18 @@

- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->JSValueConstructible +TypedArrayElement->JSValueConstructible @@ -90,23 +90,23 @@ - + JSString->JSValueConstructible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 9119c2a58..439538348 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -65,63 +65,63 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConvertible + + +TypedArrayElement->JSValueConvertible - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSValueConvertible + + +JSPromise->JSValueConvertible - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConvertible + + +JSString->JSValueConvertible - - -TypedArrayElement - - -TypedArrayElement + + +JSError + + +JSError - - -TypedArrayElement->JSValueConvertible + + +JSError->JSValueConvertible @@ -176,7 +176,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 7653f6c34..b6a3cc011 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4e6bbdae6..84806de30 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement->JSValueConvertible + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement->JSValueConstructible + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 5f8dfc1c2..9b229edcc 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index b7ffa1b85..15f7ad286 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/index.html b/index.html index dd5d8d27f..12e54e469 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 0da9f6212..5b080171f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index b70eac4d7..b90562c39 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.4.

From 0e60acfe7c587df62f5837d6bf8fd0d6363434ac Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 1 Oct 2020 16:44:55 +0000 Subject: [PATCH 035/148] deploy: cb1aaf2deacb79bf0bff235e8a402a5042011e6b --- JSArray/index.html | 32 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 100 +++++++++++++--------- JSBridgedType/index.html | 26 +++--- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 54 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 +++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 +++--- JSString/index.html | 80 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++---- JSValue/index.html | 101 +++++++++++++---------- JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 34 ++++---- JSValueConvertible/index.html | 86 ++++++++----------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +------------ all.css | Bin 21044 -> 14 bytes getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 28 files changed, 325 insertions(+), 366 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index 7b796a2bb..f22fdbdb3 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f9ba32d1d..14722ee2c 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index eb8604657..68cc05354 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0cba43e1d..28c1d8b21 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,79 +51,94 @@

- - + + %3 - + JSBridgedClass - -JSBridgedClass + +JSBridgedClass - + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + JSArray - -JSArray + +JSArray - + JSArray->JSBridgedClass - - + + + + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + @@ -153,6 +168,11 @@

Types Conforming to JSBridged​Class

implementations are not exposed in a type-safe manner, you should access the underlying jsObject property if you need those.

+
JSError
+

A wrapper around the JavaScript Error +class that +exposes its properties in a type-safe way.

+
JSTypedArray

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

@@ -192,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d7a725753..7f75ac2a9 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -CustomStringConvertible +JSValueCodable -CustomStringConvertible +JSValueCodable - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCodable - + -JSValueCodable +CustomStringConvertible -JSValueCodable +CustomStringConvertible - - -JSBridgedType->JSValueCodable + + +JSBridgedType->CustomStringConvertible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6eec8748b..acc0f8038 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index f596a0a89..4fb300df2 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index c7c1767f3..5aeb4c901 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -37,7 +37,7 @@

JSError

-
public final class JSError: Error, JSValueConvertible
+
public final class JSError: Error, JSBridgedClass

A wrapper around the JavaScript Error class that @@ -67,42 +67,42 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSValueConvertible - + + +CustomStringConvertible -JSValueConvertible - - +CustomStringConvertible - - -JSError->JSValueConvertible + + +JSError->CustomStringConvertible @@ -114,8 +114,8 @@

Conforms To

-
JSValueConvertible
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

CustomStringConvertible
Error
@@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 0cc5bd8cb..71b1a698b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 65ed30daf..496f27a69 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 64db0b2c3..44355ca02 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -92,31 +92,31 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ac470438d..ac5aa6dcb 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 015017e5e..960144044 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -JSValueConvertible - +JSValueConstructible + -JSValueConvertible +JSValueConstructible - + -JSPromise->JSValueConvertible +JSPromise->JSValueConstructible - + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - + -JSPromise->JSValueConstructible +JSPromise->JSValueConvertible @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 5d016384e..cf6086b07 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + JSValueConstructible - - -JSValueConstructible + + +JSValueConstructible - + JSString->JSValueConstructible + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +JSValueConvertible + -LosslessStringConvertible +JSValueConvertible + - - -JSString->LosslessStringConvertible + + + +JSString->JSValueConvertible - - -JSValueConvertible - + + +Equatable -JSValueConvertible - - +Equatable - + -JSString->JSValueConvertible +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 528f95d60..3e048c779 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 8cf46ba00..28b553c07 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index fc404d52b..7406a5120 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -65,15 +65,15 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible @@ -84,76 +84,87 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +JSValueCodable -ExpressibleByStringLiteral +JSValueCodable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCodable - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCodable +Equatable -JSValueCodable +Equatable - - -JSValue->JSValueCodable + + +JSValue->Equatable - + -ExpressibleByFloatLiteral - +ExpressibleByNilLiteral + + + +JSValue->ExpressibleByNilLiteral + + + + + + - [

Conforms To

+

Conforms To

-
CustomStringConvertible
-
Equatable
-
ExpressibleByFloatLiteral
-
ExpressibleByIntegerLiteral
-
ExpressibleByNilLiteral
-
ExpressibleByStringLiteral
-
JSValueCodable
-
] +
CustomStringConvertible
+
Equatable
+
ExpressibleByFloatLiteral
+
ExpressibleByIntegerLiteral
+
ExpressibleByNilLiteral
+
ExpressibleByStringLiteral
+
JSValueCodable
+

Initializers

@@ -439,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index bf455956b..d8d70e152 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ad76912a0..9167ed89d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,33 +65,33 @@

- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->JSValueConstructible +JSString->JSValueConstructible - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->JSValueConstructible + + +TypedArrayElement->JSValueConstructible @@ -105,7 +105,7 @@ - + JSPromise->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 439538348..5d43aea4e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -51,79 +51,64 @@ - - + + %3 - + JSValueConvertible - -JSValueConvertible + +JSValueConvertible - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->JSValueConvertible - - +JSPromise->JSValueConvertible + + - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->JSValueConvertible - - +TypedArrayElement->JSValueConvertible + + JSString - -JSString + +JSString - -JSString->JSValueConvertible - - - - - -JSError - - -JSError - - - - -JSError->JSValueConvertible - - +JSString->JSValueConvertible + + @@ -133,12 +118,7 @@

Types Conforming to JSValue​Convertible

-
JSError
-

A wrapper around the JavaScript Error -class that -exposes its properties in a type-safe way.

-
-
JSPromise
+
JSPromise

A wrapper around the JavaScript Promise class that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both Success and Failure types, which improves compatibility with other statically-typed APIs such @@ -176,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index b6a3cc011..e86bb4143 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 84806de30..e24e67d93 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,59 +45,7 @@

- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -JSValueConvertible - - -JSValueConvertible - - - - - -TypedArrayElement->JSValueConvertible - - - - - -JSValueConstructible - - -JSValueConstructible - - - - - -TypedArrayElement->JSValueConstructible - - - - - - +
@@ -133,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/all.css b/all.css index 82e45b4c8296527e4694defb10c2156ca2d613e2..03bb56db90e8f14c670fe0593a49cb9de3fb89e6 100644 GIT binary patch literal 14 QcmZQzfB*%z{L;J>00xHw9RL6T literal 21044 zcmds9>yMkrmj74SX^lF4V+e0BR-(H%+N=JM?1vp`KI~|;!hjpLvGD-zM=byE`#bf3 z;^A&5lev*LRvKKKQ+4XR>r~;WuB!H^>&Kdy$-rZ%?zVu9` z{W&Yk>JjaU(s);A*)F?BU&5@l^xw}tY+ z4e_CF|2V{Wwo@MY4n9Q4zKoMBugWy5f&bJh6D=7xdY)$cxQ^SZR_Lwv@gIjwZ~8}x zk57n>g&u5*5|jsF5Qa>)9r5$eyD1DG`+?8Um5B@i+`#4ibM0Hl$^Bhj9d=9!nMRBU z9)L(jkB1)sshUNd@3T}N0LWgN@mRCath@1mvyiOc)8CuJeqYsXqrFM05@KL~-=swY z89wWKN3-a2b90QQrZ@v@8n$D(nrT>JXy5b_6Gl3V;f1cFnF_G5+*#mo0LjgH0thNh zX9+5T&?I6Ucd2yGjC}^j@obJmY;tVhRj8Jd4P20vaK7 zmMV*c|CmAZL!aOs+wuu5FnwjTJsH#liH5NP-y<~qQ{b87nZTQd=lL{yc>(SS$)1j4 z8h&UKgXLuzj*y%=Bq0@X8Kby!D514va~GE(=eWb0nNzrgx)}WL66_ce=g*C_bcqe( zFE~#)+*M8o&`hC?oo$|jgjskbLwWJ-fI99h^*ml^GdyuwnoQFamvt7?#TXb-Ts+fa zHZXC`(^-)Y5Z~k_@R=bn&pm~vA$kkweD)Mj$YCgriLal*3%DN33%rFQM-~cZkX%>^ zBaK}=lUrIRC)Lqkiroq8HRKWF+0cr_UPJeo2D5-ZfxzT~HFh0CbCi*gk;(ZVtreASOU;Zyv;nkiu$KNFdG_B+ud$MwoFJ^zhC` zU&E2sRr(w`)W`huBt}wvXgP?BF09FXn!}n#;vgX69g#B}WrM7ISG5_3A+}hU_z)(E z_ia(_z!*l3ML?4&Ng(?rpaQ9>9yd*u6v#N!_IaO0hq`?8QyRB%RBYqB>|OJ4_x5R9 zu97^io2-3*Xg7Me_}Tf02iilCJ^rJ5dVdXfty#nz)4bLIzH8oJ=WV->-o1N#d^8>% zqpI(~Rnw#nuYY#_13lDP(rV;p-e3Q0JDZJ@Y!XWxmHHbSwbd1hkjxD7PRGM2hy8^Ka@kTHl`%C|H-Bv6YIDY_3d+e0dL z>$`@v{OCJ|t2v(Lg@(ycE%a(pAC{HqfJQQ*Tdv^*T3~p#xV4r>Xg8kWxta}agdi>4 zB!OWf?rN58*tYH(zOPvhG6o$D<}$YcZzsADAlvi|GoWT(yl@51)Rxkc?$D1Yb(p$ggEwXTF zJ8-DN!+x!|z?$id?+xG}xc9w1&i=kO1K^#G3&2E6@O zAA)C~7jyin&34WIe|`^{eK(9+qv+?sO*$lkC1M{|Cl-mo406XYmNv28_HUuqK3MM< zVGa=2BPqaFi)I&oHMb!b`^#q%iK_(=TbS#H9h5qpe+Vb-csWei4nO&><}ZO=>OPsT z=jLGv7$6x=P8j&&1Jua_!*>B?pzy%}H4keYy7evU%ZH(fQ2vhMFLH`WB;Fi$$&a5T=AOhW?n__sqhxB1Mwc{*)70q9w&0RD&HxQPr4-6+;Dt+(b<>V z&^5vbN+j(|WwNiUJ<9UWKTaw?GIxj4J4nbW{w8qsz75l~kn0ng`&$=5A~d`uEuun~%jnBz_!G~{$=uNw%$-VyWWUJ6*)9IszrZ~p!G?{) zIk+LeftUXZ(X|!oAwN!ZKVSv>a$tuiCx^@BiRcXHNXsHvj89ht?7(WUmU1Cmx~CNz zp3v>B18D>gws{M=2B8!rYlSS~_HSJW@?4^Z3iqwUdm}HmpgF&IY-JZ}t^;pP3p?Zi zAOV?yt$6`*hdg|Miw<(b@)HmRMQ}Zh@&Nd23oytP*C?YK0#Ns&=X5M#1wu<-BKQ7-TLqZuVoC#a1Tj)sDI!Be(eQWie%tr z*Stg}GeO1V8&mQ#DT5OlPN?}#LLnJhoI{MZk(LZQ{I5E`VmzY3#kYT*YFeQ9Z3nlaVSGXH;|TXQ_tR#v=Su% zB>z?@?s@qD1Na~&q@_C1iAC8Gd7?UWxxmCO|b}7P1N06v_}hG4Q|(mLd2y&_Oa3&LR^7O}dRq zvl;>J5wE~EC@L8wWwvw&X26Mtm-;uV&c$UBpRXYNnaO_l65T^w7x5Yu=pR<` z{E_TL8bx89T>U4gA+|wTn7DPqk{l(xH!ZJ_PI;ev=rw+L8lkuI*X6`w)&!Ps$HvZvY6a1>i=z9?CzTAr+XZO_-Vx; zs^*D9HCxokb3Bh|cd|j<9Y;bQv-N#}9;llhAl~7C1({5iuF`_a&9v|@+j_+TpLcDZ zHANHcs$I4sigbYA0VLbBr`(D*McuS|wb9A=7P&ocaK;VpxWOAY_``|_n4OrDbUq1r=0Gl*7ZJxsY=i+ zCqpI>QJnVOK&6h)O6&UL-zC<%f~9XGb2U)wUHqWs_K|H?;)obO0L8z-3%^k}R@tWe zjj+$+OBPvmw&h=^?jf<8Dc{h28MuLMsD9N&a^d~s@_I8o|DzI zPje#jFn79i^T!m*0=D0@&j=CZ9~f9!Xk~Ha-h-%P!)5g;j%X8q5l0V2gDt7_$ec-v z{bEtwWj(}EUcr_o4{`8`cCj!<9K~=_57`8S;jb5z>h1100m8;HwUYr`Ob!jzH5W#6 z*n<1d42bXk&22~093swrv2}TKipk8&?1R$XNU-n+>R_6YW3vt}GjET|PBvpQj-O?_ zcD1f*OfItaPg+xzMXJf;bCU;B6~wtUt_0_|F9#D4JEAwMeVnEg8!TuIlL5{QfeiT8 z1aeuVo82PYE~E&VaElgBKbac;jfNv!imVNC5opq4p~=$Yj@+YY=Ac62LiNSzJXQ5c zZ*DlLV|BrP@sYV!z6^-0Q@mc+N5MGr6qPui`R0G)n+3nSujE~u%eyc6jhKQ^XrijEs0f?bmd}u3J_7mS;M)fb)Y<_RjN za8l*1rm{QQRPa7$nJ!?3Af~`0aR~6Pb&Al7O2AUX99Sp84h}6-Kqgr>Q2|E{0*usv z^3+c9y!|Ls&KO|?2W@u=j}kmt9XF1?PnkNU>2+>Rab94<6nJKiVroLQrOyfzsP>cI z$-K^=el>&!|mw z9-`NZ^DvAJFFhtDIRBh6X7pHU!3a$adTb3Le1N#`n8v;fi_}?WWzO*BMV8Dy?71=f zm@(qa6XL<_BR2j1NjLMZ>Ca3$ilp5zb5qZ=%k)s3+*f1d_-N(L3H{KrQF-un==!#S zhr@F8+q(b-f4+}zoq&`|=Y}Y++~BPYy-Dh-gc06FZFNZUQFL_!Cs=K<-jpc?3mP5r zbHqY?jYTn%TNxr&ebUVC5P-A)eq-L8Bo*J)H}d*`s$|o2awhCD6H5+tgQNEQs@UON z*lV#Aaq)uC$@3eQXNb}TzX)e3^?BstFN*_%p8hhoiz9Z~?~v1ZLR<)MeR(v}KCVHxeV(?Ne&fgg!45 z6m0NWTyf9|S!RmQHg7!|qGe~lce+N+Gzy%X1SMU))GN&V?b@|#{WOmWNW0%~DM zERPO_cx`Q=!~2#f9J6!si+?~L??1=MFYN0-QRrAG=gL{#;Os$e_LPrEles}b^T^uH zo>NyalymJsw0lH4PChxBt|0Q0?lzDdj&%00`UJ@VlBjbksB>r36;yfP9VH)`H=Qd@ zocMyCAv3OBT1;Z;)ncX`z%yS_SJ34mAGMXdt8FN`G^>oCs~(LWPAW)ZHB7Y&^VE_d z9Q$y->gP0fhF)QpJWP)_gyd~gq*=siAC)VpMAoK@Ha`xQ;3qUtmvG@!E~7UVc-2SQ zalmdwoN53Rset6onc7*$yYBgz0jIV`X{g`A(1@^c(|9;yzL>%HqC*<>1*PAU;IPz7 z@m4I47kqx*`zVS}_^LV~-WyWt(-7E15(Z+~KG!J0UC@pU7oG4szx?xawX5|1%I*%Z z_{HaJS5^x&#YwgJSnW{ejGM)$0#zq=vR5N$JUG-vR%`#6JubFrX!dxMm#LuC2w2yN zkNaU?mCtw8t}CN4ktj4Bk#Lj|GBhf&ex%n+|E<{4+oss@5`AcRNxRrL*+QVvk-+Yr zcQ3!v#@LY`A~@G4bL^thXFfcFeX*&$T{6-%Qf1l#xfKO$-9~!^Jk2nuTp#K z=JfY%mKL#wMIzqT*Wz8Oz3D}Xx3>3B$oMFT3t9U^SyQo9nHJ;i`4_7ul0}7xal3bU z!zuB;u@5s;d^RHLy1S7_y=XR9ykHEo%wY~FYu{mudDuVRj-%4@hu^Sr&fbenkl%kx z=yi?XwLQRvw_ueU9B!dK%9oMS;$egYloQQ?wwaFIg8PXrxY>hY-h|i9&m~QLdzUGS zDm28`F%;H@A!$TSkow)CiZFH=e#n2y+Lnx1qoD^uXha8#^@70y-K4#?Bgz?Z8`Tso z<%oP!662B5$`XcYKIALOQC`3pL|zRW!+il%R?O$M*fY zH0cuSx6fB$*|BP4*=jrpSY+s>%;#@geTif4n^-wlleFVL9lf ziKG}X5+0id!$xT*l^jO~vK_bnu8~KmqFFuW*qdXHl#1w&2)!pp*&hcu(j(pyr#JCs zZZr5fjm`p?W?%zkc9W5pT>Gc8t8S<9a@WjQqxVq(RVLLrbo(xRNHW2GCeR4x{*-+_ zW#^agy>>1RsC2Rt9dx_0a%1QiB&1AzW_X{1Q$=Wk~6GX?7fa}b#FXMEItl#)67 z37ne&rE%NV1*%BMd%L3vnsJ{!(|+%ut)y3n<5H3 z$_&wyYP*GvN#vPb8Zl)$m3Jc&4}KEm)l)AbDdPqfK^bx8OvXUcSM$UnG`waFd+U}S zO3|4X9sL?e*eW(F*?z|0Gy)xlV{wkT1#V6hwMIK7-fDow{l0Q)K`>GLGLyr}qY-M09$IH;j27=L1SwYH2HySa!ClEabNrb5|t~)!9z~2w&B^ zCf*DO)%|P}=ORRx=<5Z z&WFzBs$efMw}Znt@*US#h?8LRv%RB|06HsnIB12W>I+I327gEKm3}$Ue6RHDUg%W5 zSNBR!5^TONAyoje7rkEZi-FDeCG@U)*XNbaI=C~vv0o^}JiC`PUg@ucQ*jmsd1CYvE*ZchIPx(HW% diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 9b229edcc..b209ff493 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 15f7ad286..df026d2f0 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 12e54e469..af427aa01 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 5b080171f..b062da1f7 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index b90562c39..8780c5a88 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.4. + Generated on using swift-doc 1.0.0-beta.5.

From 915ecc9b14b1071c00264670eaaeb98504ef136a Mon Sep 17 00:00:00 2001 From: j-f1 Date: Thu, 1 Oct 2020 17:51:48 +0000 Subject: [PATCH 036/148] deploy: 2f460bae747a4e487bc51f61bc12b91bd2e42b26 --- JSArray/index.html | 32 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 76 ++++++++++----------- JSBridgedType/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 44 ++++++------- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 24 +++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 58 ++++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 84 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueConstructible/index.html | 38 +++++------ JSValueConvertible/index.html | 8 +-- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 27 files changed, 260 insertions(+), 208 deletions(-) diff --git a/JSArray/index.html b/JSArray/index.html index f22fdbdb3..7fa2a1e6c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 14722ee2c..ba6af9d38 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 68cc05354..2f7104124 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 28c1d8b21..8f536896b 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,79 +66,79 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass - - +JSTypedArray->JSBridgedClass + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 7f75ac2a9..f68bfc6e9 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index acc0f8038..75aba757c 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 4fb300df2..1863d5282 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 5aeb4c901..7d5ddf63b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -Error - -Error - - - -JSError->Error - + -CustomStringConvertible +Error -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 71b1a698b..346986ee0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 496f27a69..a034c2e75 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 44355ca02..7e84842f1 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -92,31 +92,31 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ac5aa6dcb..2edb01788 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 960144044..5e1f7c35a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index cf6086b07..bf5918357 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,57 +77,57 @@

- + -JSValueConstructible - +JSValueConvertible + -JSValueConstructible +JSValueConvertible - - -JSString->JSValueConstructible + + +JSString->JSValueConvertible - - -ExpressibleByStringLiteral + + +JSValueConstructible + -ExpressibleByStringLiteral +JSValueConstructible + - + + -JSString->ExpressibleByStringLiteral +JSString->JSValueConstructible - - -JSValueConvertible - + + +Equatable -JSValueConvertible - +Equatable - - + -JSString->JSValueConvertible +JSString->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 3e048c779..84411b777 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 28b553c07..54788fc68 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -73,7 +73,7 @@

ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -88,7 +88,7 @@ - + JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 7406a5120..8d8a0b85e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +JSValueCodable -ExpressibleByIntegerLiteral +JSValueCodable - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueCodable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -JSValueCodable +ExpressibleByFloatLiteral -JSValueCodable +ExpressibleByFloatLiteral - - -JSValue->JSValueCodable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index d8d70e152..306f6feb7 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9167ed89d..e38f0a42c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -65,18 +65,18 @@

- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->JSValueConstructible + + +JSPromise->JSValueConstructible @@ -95,18 +95,18 @@ - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->JSValueConstructible + + +JSString->JSValueConstructible @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 5d43aea4e..728dc14e7 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -75,7 +75,7 @@
- + JSPromise->JSValueConvertible @@ -90,7 +90,7 @@ - + TypedArrayElement->JSValueConvertible @@ -105,7 +105,7 @@ - + JSString->JSValueConvertible @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index e86bb4143..1b7928152 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e24e67d93..7bb06c4e8 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +JSValueConstructible + + +JSValueConstructible + + + + + +TypedArrayElement->JSValueConstructible + + + + + +JSValueConvertible + + +JSValueConvertible + + + + + +TypedArrayElement->JSValueConvertible + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index b209ff493..62fb03ab5 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index df026d2f0..d60770f4f 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index af427aa01..b1e9219e0 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index b062da1f7..bcc63b17e 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 8780c5a88..98175726c 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 2e1c847fe6afb3603e1e19edb8f1d6ab6e947456 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 2 Oct 2020 00:18:24 +0000 Subject: [PATCH 037/148] deploy: bbc49d3d3b4a03799d970a6459da453ae8eea0ae --- ConstructibleFromJSValue/index.html | 186 +++++++++++++++++++++++ ConvertibleToJSValue/index.html | 163 ++++++++++++++++++++ JSArray/index.html | 34 ++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 +++++----- JSBridgedType/index.html | 50 +++--- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++-- JSError/index.html | 38 ++--- JSFunction/index.html | 14 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 22 +-- JSObjectRef/index.html | 2 +- JSPromise/index.html | 36 ++--- JSString/index.html | 114 +++++++------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++--- JSValue/index.html | 116 +++++++------- JSValueCodable/index.html | 4 +- JSValueCompatible/index.html | 50 ++++++ JSValueConstructible/index.html | 146 +----------------- JSValueConvertible/index.html | 123 +-------------- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 32 ++-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 52 +++++-- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 761 insertions(+), 587 deletions(-) create mode 100644 ConstructibleFromJSValue/index.html create mode 100644 ConvertibleToJSValue/index.html create mode 100644 JSValueCompatible/index.html diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html new file mode 100644 index 000000000..7b5d16ece --- /dev/null +++ b/ConstructibleFromJSValue/index.html @@ -0,0 +1,186 @@ + + + + + + JavaScriptKit - ConstructibleFromJSValue + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + Constructible​From​JSValue +

+ +
public protocol ConstructibleFromJSValue
+
+

Types conforming to this protocol can be constructed from JSValue.

+ +
+
+ +
+ + + + + + +%3 + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->ConstructibleFromJSValue + + + + + +JSString + + +JSString + + + + + +JSString->ConstructibleFromJSValue + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->ConstructibleFromJSValue + + + + + + + + +
+

Types Conforming to Constructible​From​JSValue

+
+
JSPromise
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
+
TypedArrayElement
+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+
+
JSString
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+
+
+
+ + + +
+

Requirements

+ +
+

+ construct(from:​) +

+
static func construct(from value: JSValue) -> Self?
+
+

Construct an instance of Self, if possible, from the given JSValue. +Return nil if the value is not compatible with the conforming Swift type.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
valueJSValue

The JSValue to decode

+
+

Returns

+

An instance of Self, if one was successfully constructed from the value.

+ +
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html new file mode 100644 index 000000000..c48502428 --- /dev/null +++ b/ConvertibleToJSValue/index.html @@ -0,0 +1,163 @@ + + + + + + JavaScriptKit - ConvertibleToJSValue + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + Convertible​ToJSValue +

+ +
public protocol ConvertibleToJSValue
+
+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+ +
+
+ +
+ + + + + + +%3 + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSString + + +JSString + + + + + +JSString->ConvertibleToJSValue + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->ConvertibleToJSValue + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->ConvertibleToJSValue + + + + + + + + +
+

Types Conforming to Convertible​ToJSValue

+
+
JSPromise
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
+
TypedArrayElement
+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

+
+
JSString
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

+
+
+
+ + + +
+

Requirements

+ +
+

+ js​Value() +

+
func jsValue() -> JSValue
+
+

Create a JSValue that represents this object

+ +
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSArray/index.html b/JSArray/index.html index 7fa2a1e6c..08c96d30f 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index ba6af9d38..cefe0fe61 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 2f7104124..07b65e61d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 8f536896b..bb0d0c4fd 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,80 +66,80 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index f68bfc6e9..d179ceee0 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -37,7 +37,7 @@

JSBridged​Type

-
public protocol JSBridgedType: JSValueCodable, CustomStringConvertible
+
public protocol JSBridgedType: JSValueCompatible, CustomStringConvertible

Use this protocol when your type has no single JavaScript class. For example, a union type of multiple classes or primitive values.

@@ -66,44 +66,44 @@ - - -JSValueCodable - -JSValueCodable + + +JSValueCompatible + +JSValueCompatible - + -JSBridgedType->JSValueCodable - - +JSBridgedType->JSValueCompatible + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -114,7 +114,7 @@

Conforms To

CustomStringConvertible
-
JSValueCodable
+
JSValueCompatible

Types Conforming to JSBridged​Type

@@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 75aba757c..e387c9264 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 1863d5282..9cc743d6d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 7d5ddf63b..fe893f7a7 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,30 +67,30 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -101,7 +101,7 @@ Error - + JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 346986ee0..ff4626213 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -136,7 +136,7 @@

Methods

call​AsFunction(this:​arguments:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [JSValueConvertible]) -> JSValue
+
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue

Call this function with given arguments and binding given this as context.

@@ -160,7 +160,7 @@

Parameters

arguments - [JSValue​Convertible] + [Convertible​ToJSValue]

Arguments to be passed to this function.

@@ -174,7 +174,7 @@

Returns

call​AsFunction(this:​_:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: JSValueConvertible) -> JSValue
+
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue) -> JSValue

A variadic arguments version of callAsFunction.

@@ -184,7 +184,7 @@

new(arguments:​)

-
public func new(arguments: [JSValueConvertible]) -> JSObject
+
public func new(arguments: [ConvertibleToJSValue]) -> JSObject

Instantiate an object from this function as a constructor.

@@ -218,7 +218,7 @@

Parameters

arguments - [JSValue​Convertible] + [Convertible​ToJSValue]

Arguments to be passed to this constructor function.

@@ -232,7 +232,7 @@

Returns

new(_:​)

-
public func new(_ arguments: JSValueConvertible) -> JSObject
+
public func new(_ arguments: ConvertibleToJSValue) -> JSObject

A variadic arguments version of new.

@@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a034c2e75..9c70dcc3b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 7e84842f1..679e2080e 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,27 +79,27 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 2edb01788..11c8941b0 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 5e1f7c35a..458f03ea9 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -37,7 +37,7 @@

JSPromise

-
public final class JSPromise<Success, Failure>: JSValueConvertible, JSValueConstructible
+
public final class JSPromise<Success, Failure>: ConvertibleToJSValue, ConstructibleFromJSValue

A wrapper around the JavaScript Promise class that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both @@ -83,33 +83,33 @@

- + -JSValueConstructible - +ConstructibleFromJSValue + -JSValueConstructible +ConstructibleFromJSValue - - -JSPromise->JSValueConstructible + + +JSPromise->ConstructibleFromJSValue - + -JSValueConvertible - +ConvertibleToJSValue + -JSValueConvertible +ConvertibleToJSValue - - -JSPromise->JSValueConvertible + + +JSPromise->ConvertibleToJSValue @@ -121,10 +121,10 @@

Conforms To

-
JSValueConstructible
+
ConstructibleFromJSValue

Types conforming to this protocol can be constructed from JSValue.

-
JSValueConvertible
+
ConvertibleToJSValue

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index bf5918357..1910cb435 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -26,7 +26,7 @@ @@ -77,69 +77,69 @@

- - -JSValueConvertible - + + +Equatable -JSValueConvertible - - +Equatable - - -JSString->JSValueConvertible + + +JSString->Equatable - - -JSValueConstructible - + + +LosslessStringConvertible -JSValueConstructible - - +LosslessStringConvertible - - -JSString->JSValueConstructible + + +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue @@ -151,10 +151,10 @@

Conforms To

-
JSValueConstructible
+
ConstructibleFromJSValue

Types conforming to this protocol can be constructed from JSValue.

-
JSValueConvertible
+
ConvertibleToJSValue

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

Equatable
@@ -200,7 +200,19 @@

Methods

-
+
+

+ construct(from:​) +

+
public static func construct(from value: JSValue) -> JSString?
+
+
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+

==(lhs:​rhs:​)

@@ -234,18 +246,6 @@

Parameters

-
-
-

- construct(from:​) -

-
public static func construct(from value: JSValue) -> JSString?
-
-
-

- js​Value() -

-
public func jsValue() -> JSValue
@@ -256,7 +256,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 84411b777..7252bf5c7 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 54788fc68..5c54f3add 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 8d8a0b85e..035a66dc6 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -65,87 +65,87 @@

- + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByNilLiteral - + -JSValueCodable +CustomStringConvertible -JSValueCodable +CustomStringConvertible - - -JSValue->JSValueCodable + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral @@ -163,7 +163,7 @@

Conforms To

ExpressibleByIntegerLiteral
ExpressibleByNilLiteral
ExpressibleByStringLiteral
-
JSValueCodable
+
JSValueCompatible

@@ -353,11 +353,23 @@

Methods

-
+
+

+ construct(from:​) +

+
public static func construct(from value: JSValue) -> Self?
+
+
+

+ js​Value() +

+
public func jsValue() -> JSValue
+
+

from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: JSValueConstructible
+
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue

@@ -428,18 +440,6 @@

Parameters

Returns

The result of instanceof in the JavaScript environment.

-
-
-

- construct(from:​) -

-
public static func construct(from value: JSValue) -> Self?
-
-
-

- js​Value() -

-
public func jsValue() -> JSValue
@@ -450,7 +450,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 306f6feb7..51587fa00 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -37,13 +37,13 @@

JSValue​Codable

-
public typealias JSValueCodable = JSValueConvertible & JSValueConstructible
+
@available(*, deprecated, renamed: "JSValueCompatible") public typealias JSValueCodable = JSValueCompatible

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html new file mode 100644 index 000000000..18f425ef7 --- /dev/null +++ b/JSValueCompatible/index.html @@ -0,0 +1,50 @@ + + + + + + JavaScriptKit - JSValueCompatible + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+ +
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e38f0a42c..6567da95f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -26,160 +26,24 @@

- Protocol - JSValue​Constructible + Typealias + JSValue​Constructible

-
public protocol JSValueConstructible
-
-

Types conforming to this protocol can be constructed from JSValue.

- -
-
- -
- - - - - - -%3 - - - -JSValueConstructible - - -JSValueConstructible - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSValueConstructible - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->JSValueConstructible - - - - - -JSString - - -JSString - - - - - -JSString->JSValueConstructible - - - - - - - - -
-

Types Conforming to JSValue​Constructible

-
-
JSPromise
-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

-
-
TypedArrayElement
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

-
-
JSString
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

-
-
-
- - - -
-

Requirements

- -
-

- construct(from:​) -

-
static func construct(from value: JSValue) -> Self?
-
-

Construct an instance of Self, if possible, from the given JSValue. -Return nil if the value is not compatible with the conforming Swift type.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
valueJSValue

The JSValue to decode

-
-

Returns

-

An instance of Self, if one was successfully constructed from the value.

- -
-
+
@available(*, deprecated, renamed: "ConstructibleFromJSValue") public typealias JSValueConstructible = ConstructibleFromJSValue

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 728dc14e7..7b7639ceb 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -26,137 +26,24 @@

- Protocol - JSValue​Convertible + Typealias + JSValue​Convertible

-
public protocol JSValueConvertible
-
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

- -
-
- -
- - - - - - -%3 - - - -JSValueConvertible - - -JSValueConvertible - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSValueConvertible - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->JSValueConvertible - - - - - -JSString - - -JSString - - - - - -JSString->JSValueConvertible - - - - - - - - -
-

Types Conforming to JSValue​Convertible

-
-
JSPromise
-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

-
-
TypedArrayElement
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

-
-
JSString
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

-
-
-
- - - -
-

Requirements

- -
-

- js​Value() -

-
func jsValue() -> JSValue
-
-

Create a JSValue that represents this object

- -
-
-
+
@available(*, deprecated, renamed: "ConvertibleToJSValue") public typealias JSValueConvertible = ConvertibleToJSValue

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1b7928152..d6b8310fc 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7bb06c4e8..42027118f 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -37,7 +37,7 @@

Typed​Array​Element

-
public protocol TypedArrayElement: JSValueConvertible, JSValueConstructible
+
public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValue

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

@@ -65,33 +65,33 @@ - + -JSValueConstructible - +ConstructibleFromJSValue + -JSValueConstructible +ConstructibleFromJSValue - + -TypedArrayElement->JSValueConstructible +TypedArrayElement->ConstructibleFromJSValue - + -JSValueConvertible - +ConvertibleToJSValue + -JSValueConvertible +ConvertibleToJSValue - + -TypedArrayElement->JSValueConvertible +TypedArrayElement->ConvertibleToJSValue @@ -103,10 +103,10 @@

Conforms To

-
JSValueConstructible
+
ConstructibleFromJSValue

Types conforming to this protocol can be constructed from JSValue.

-
JSValueConvertible
+
ConvertibleToJSValue

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 62fb03ab5..98f8eae2c 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index d60770f4f..65283d665 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index b1e9219e0..6f68707c3 100644 --- a/index.html +++ b/index.html @@ -208,40 +208,40 @@

Protocols

- - JSBridged​Type + + Constructible​From​JSValue
-

Use this protocol when your type has no single JavaScript class. -For example, a union type of multiple classes or primitive values.

+

Types conforming to this protocol can be constructed from JSValue.

- - JSBridged​Class + + Convertible​ToJSValue
-

Conform to this protocol when your Swift class wraps a JavaScript class.

+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

- - JSValue​Constructible + + JSBridged​Type
-

Types conforming to this protocol can be constructed from JSValue.

+

Use this protocol when your type has no single JavaScript class. +For example, a union type of multiple classes or primitive values.

- - JSValue​Convertible + + JSBridged​Class
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+

Conform to this protocol when your Swift class wraps a JavaScript class.

@@ -250,6 +250,14 @@

Protocols

Typealiases

+ + JSValue​Compatible + +
+
+ +
+
JSObject​Ref @@ -272,6 +280,22 @@

Typealiases

+
+
+ + JSValue​Convertible + +
+
+ +
+
+ + JSValue​Constructible + +
+
+
@@ -325,7 +349,7 @@

Functions

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index bcc63b17e..03eeb200d 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 98175726c..86cce84cf 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From b3d5ebe38bd3a33450df3a1e38f9d34b15103483 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 2 Oct 2020 15:20:32 +0000 Subject: [PATCH 038/148] deploy: 42352269ce4aba1ac71f638de1e9dad1ef8932e9 --- ConstructibleFromJSValue/index.html | 52 ++++++++--------- ConvertibleToJSValue/index.html | 36 ++++++------ JSArray/index.html | 34 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 62 ++++++++++---------- JSBridgedType/index.html | 8 +-- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 36 ++++++------ JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 42 +++++++------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 54 ++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 53 +---------------- JSValue/index.html | 74 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 237 insertions(+), 286 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7b5d16ece..bef96dba2 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index c48502428..826324f01 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -90,23 +90,23 @@ - + JSPromise->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 08c96d30f..52225ecbb 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

+ + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index cefe0fe61..0b839e695 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 07b65e61d..ffbad02b5 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index bb0d0c4fd..e6c64a035 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,34 +66,34 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - + + @@ -105,38 +105,38 @@ - + JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d179ceee0..1a76cec11 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -73,7 +73,7 @@

JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -85,7 +85,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e387c9264..09bed6bb4 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 9cc743d6d..fd2006dee 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index fe893f7a7..bf719295d 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,15 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -94,15 +91,18 @@ - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ff4626213..4f26e464a 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9c70dcc3b..e78bff92e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 679e2080e..4678c5568 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,18 +79,6 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Equatable @@ -98,25 +86,37 @@ Equatable - + JSObject->Equatable + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 11c8941b0..883048b55 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 458f03ea9..03c43e24f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->ConstructibleFromJSValue @@ -108,7 +108,7 @@ - + JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 1910cb435..906720e9e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,15 +77,18 @@

- - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -96,7 +99,7 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible @@ -108,38 +111,35 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7252bf5c7..ef0cc0f17 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5c54f3add..9630f00d0 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -46,56 +46,7 @@

- - - - - - -%3 - - - -JSTypedArray - - -JSTypedArray - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - - - +
@@ -216,7 +167,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 035a66dc6..891b9e6d0 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,63 +65,63 @@

- + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible @@ -132,20 +132,20 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 51587fa00..fc839b879 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 18f425ef7..f0b8dce84 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6567da95f..a8fc3e88a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 7b7639ceb..d7b493614 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d6b8310fc..c90af2946 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 42027118f..1dd199924 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 98f8eae2c..bb1269838 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 65283d665..ca0d3ac98 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 6f68707c3..5159bc0a9 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 03eeb200d..cab718ace 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 86cce84cf..b0e58aa15 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 3c641fb45bea7218988fe2dc95cbb693cfcd2b1e Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sat, 3 Oct 2020 14:17:11 +0000 Subject: [PATCH 039/148] deploy: 4b7981bc1b81a1f25e7aca851866d55913657d61 --- ConstructibleFromJSValue/index.html | 30 ++++----- ConvertibleToJSValue/index.html | 8 +-- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 8 +-- JSBridgedType/index.html | 28 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 38 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 78 ++++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 53 +++++++++++++++- JSValue/index.html | 76 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 214 insertions(+), 165 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index bef96dba2..5c6f08171 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,18 +65,18 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -95,18 +95,18 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 826324f01..e226e03cc 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -75,7 +75,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -90,7 +90,7 @@ - + JSPromise->ConvertibleToJSValue @@ -105,7 +105,7 @@ - + JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 52225ecbb..d0c5b3815 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0b839e695..7127dbeb3 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ffbad02b5..bcbebb40a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e6c64a035..37231c189 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -90,7 +90,7 @@

- + JSDate->JSBridgedClass @@ -105,7 +105,7 @@ - + JSTypedArray->JSBridgedClass @@ -120,7 +120,7 @@ - + JSError->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 1a76cec11..d154dbc84 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 09bed6bb4..1897b477b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index fd2006dee..348c3b02f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index bf719295d..ef6f53158 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,15 +67,18 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -86,23 +89,20 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 4f26e464a..8c5ee9c63 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e78bff92e..b15237499 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 4678c5568..68d62edfb 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,7 +86,7 @@

Equatable
- + JSObject->Equatable @@ -113,7 +113,7 @@ - + JSFunction->JSObject @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 883048b55..1c77097d4 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 03c43e24f..c7f4e6040 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 906720e9e..aabed4869 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - + + -JSString->Equatable +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index ef0cc0f17..ecb3571c8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 9630f00d0..1bec90bc7 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -46,7 +46,56 @@

- + + + + + + +%3 + + + +JSTypedArray + + +JSTypedArray + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSTypedArray->JSBridgedClass + + + + + +
@@ -167,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 891b9e6d0..561f53563 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,63 +65,63 @@

- + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -132,20 +132,20 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index fc839b879..97dd0469a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index f0b8dce84..e3034dfd6 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a8fc3e88a..d76ed1001 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d7b493614..258f5478f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index c90af2946..add4eb636 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1dd199924..61d5b5476 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index bb1269838..c4154feea 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index ca0d3ac98..70aa6ea9a 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 5159bc0a9..300a6480a 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index cab718ace..9cfb3aff1 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index b0e58aa15..1a93ff2e0 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 012cfbfbdf4c079121ad8ea08365634d752df9bf Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 4 Oct 2020 12:28:36 +0000 Subject: [PATCH 040/148] deploy: 9b68b67f495e879a68243a5d3b689c2045b6e403 --- ConstructibleFromJSValue/index.html | 75 +-------------- ConvertibleToJSValue/index.html | 75 +-------------- JSArray/index.html | 57 +----------- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 42 +-------- JSBridgedClass/index.html | 105 +-------------------- JSBridgedType/index.html | 69 +------------- JSClosure/index.html | 45 +-------- JSDate/index.html | 57 +----------- JSError/index.html | 69 +------------- JSFunction/index.html | 60 +----------- JSFunctionRef/index.html | 2 +- JSObject/index.html | 69 +------------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 60 +----------- JSString/index.html | 96 +------------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 57 +----------- JSValue/index.html | 114 +---------------------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 60 +----------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 46 insertions(+), 1092 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 5c6f08171..37eac68dd 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -44,78 +44,7 @@

-
- - - - - - -%3 - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->ConstructibleFromJSValue - - - - - -JSString - - -JSString - - - - - -JSString->ConstructibleFromJSValue - - - - - - - - -
+

Types Conforming to Constructible​From​JSValue

JSPromise
@@ -179,7 +108,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e226e03cc..516e5de4b 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -44,78 +44,7 @@

-
- - - - - - -%3 - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->ConvertibleToJSValue - - - - - -JSString - - -JSString - - - - - -JSString->ConvertibleToJSValue - - - - - - - - -
+

Types Conforming to Convertible​ToJSValue

JSPromise
@@ -156,7 +85,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSArray/index.html b/JSArray/index.html index d0c5b3815..71bb6da4c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -45,60 +45,7 @@

-
- - - - - - -%3 - - - -JSArray - - -JSArray - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSArray->JSBridgedClass - - - - - - - - -
+

Nested Types

JSArray.Iterator
@@ -248,7 +195,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 7127dbeb3..b6ae08a67 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index bcbebb40a..40760cfd8 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -40,45 +40,7 @@

public class Iterator: IteratorProtocol
-
- - - - - - -%3 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - -IteratorProtocol - - - -JSArray.Iterator->IteratorProtocol - - - - - - - - -
+

Member Of

JSArray
@@ -109,7 +71,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 37231c189..c316c5409 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -44,108 +44,7 @@

-
- - - - - - -%3 - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedType - - -JSBridgedType - - - - - -JSBridgedClass->JSBridgedType - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - - - - - -
+

Conforms To

JSBridgedType
@@ -212,7 +111,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d154dbc84..e63b7875d 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -45,72 +45,7 @@

-
- - - - - - -%3 - - - -JSBridgedType - - -JSBridgedType - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSBridgedType->JSValueCompatible - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedClass->JSBridgedType - - - - - - - - -
+

Conforms To

CustomStringConvertible
@@ -145,7 +80,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1897b477b..7edb276cb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -62,48 +62,7 @@

-
- - - - - - -%3 - - - -JSClosure - - -JSClosure - - - - - -JSFunction - - -JSFunction - - - - - -JSClosure->JSFunction - - - - - - - - -
+

Superclass

JSFunction
@@ -178,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSDate/index.html b/JSDate/index.html index 348c3b02f..01ef8b69c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -50,60 +50,7 @@

-
- - - - - - -%3 - - - -JSDate - - -JSDate - - - - - -Comparable - -Comparable - - - -JSDate->Comparable - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSDate->JSBridgedClass - - - - - - - - -
+

Conforms To

JSBridgedClass
@@ -428,7 +375,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSError/index.html b/JSError/index.html index ef6f53158..1053db65d 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -46,72 +46,7 @@

-
- - - - - - -%3 - - - -JSError - - -JSError - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSError->JSBridgedClass - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - - -Error - -Error - - - -JSError->Error - - - - - - - - -
+

Conforms To

JSBridgedClass
@@ -227,7 +162,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 8c5ee9c63..08d76a1ca 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -53,63 +53,7 @@

-
- - - - - - -%3 - - - -JSFunction - - -JSFunction - - - - - -JSObject - - -JSObject - - - - - -JSFunction->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSFunction - - - - - - - - -
+

Superclass

JSObject
@@ -265,7 +209,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index b15237499..7c97ef997 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSObject/index.html b/JSObject/index.html index 68d62edfb..58f02d189 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -58,72 +58,7 @@

-
- - - - - - -%3 - - - -JSObject - - -JSObject - - - - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - - - - - - -
+

Subclasses

JSFunction
@@ -249,7 +184,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1c77097d4..c2c7d84dd 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c7f4e6040..c050e55df 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,63 +62,7 @@

-
- - - - - - -%3 - - - -JSPromise - - -JSPromise - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -JSPromise->ConstructibleFromJSValue - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSPromise->ConvertibleToJSValue - - - - - - - - -
+

Conforms To

ConstructibleFromJSValue
@@ -213,7 +157,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSString/index.html b/JSString/index.html index aabed4869..526ec26ea 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -56,99 +56,7 @@

-
- - - - - - -%3 - - - -JSString - - -JSString - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -JSString->ConstructibleFromJSValue - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSString->ConvertibleToJSValue - - - - - -Equatable - -Equatable - - - -JSString->Equatable - - - - - - - - -
+

Conforms To

ConstructibleFromJSValue
@@ -256,7 +164,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSTimer/index.html b/JSTimer/index.html index ecb3571c8..6968be4b2 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 1bec90bc7..ede994a69 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -45,60 +45,7 @@

-
- - - - - - -%3 - - - -JSTypedArray - - -JSTypedArray - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSTypedArray->JSBridgedClass - - - - - - - - -
+

Conforms To

JSBridgedClass
@@ -216,7 +163,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValue/index.html b/JSValue/index.html index 561f53563..7314674fe 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -44,117 +44,7 @@

-
- - - - - - -%3 - - - -JSValue - - -JSValue - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSValue->JSValueCompatible - - - - - -Equatable - -Equatable - - - -JSValue->Equatable - - - - - -ExpressibleByNilLiteral - -ExpressibleByNilLiteral - - - -JSValue->ExpressibleByNilLiteral - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSValue->CustomStringConvertible - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSValue->ExpressibleByStringLiteral - - - - - -ExpressibleByFloatLiteral - -ExpressibleByFloatLiteral - - - -JSValue->ExpressibleByFloatLiteral - - - - - -ExpressibleByIntegerLiteral - -ExpressibleByIntegerLiteral - - - -JSValue->ExpressibleByIntegerLiteral - - - - - - - - -
+

Conforms To

CustomStringConvertible
@@ -450,7 +340,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 97dd0469a..b4973dd24 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index e3034dfd6..0a2b25391 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d76ed1001..16e86bb37 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 258f5478f..1da2e070c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index add4eb636..37865eb9b 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 61d5b5476..b34d4bde8 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -44,63 +44,7 @@

-
- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - - - - -
+

Conforms To

ConstructibleFromJSValue
@@ -133,7 +77,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index c4154feea..5ceb622e8 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 70aa6ea9a..ac3f3a1bb 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/index.html b/index.html index 300a6480a..ca370c540 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9cfb3aff1..7895e5967 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 1a93ff2e0..a75905a5b 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.3.

From 72239fbf973b3a3917b624589209979637b02c11 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 4 Oct 2020 12:31:11 +0000 Subject: [PATCH 041/148] deploy: 3bd2ced70214345b9787e188fce1b4fa73584aef --- ConstructibleFromJSValue/index.html | 75 ++++++++++++++- ConvertibleToJSValue/index.html | 75 ++++++++++++++- JSArray/index.html | 57 +++++++++++- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 42 ++++++++- JSBridgedClass/index.html | 105 ++++++++++++++++++++- JSBridgedType/index.html | 69 +++++++++++++- JSClosure/index.html | 45 ++++++++- JSDate/index.html | 57 +++++++++++- JSError/index.html | 69 +++++++++++++- JSFunction/index.html | 60 +++++++++++- JSFunctionRef/index.html | 2 +- JSObject/index.html | 69 +++++++++++++- JSObjectRef/index.html | 2 +- JSPromise/index.html | 60 +++++++++++- JSString/index.html | 96 ++++++++++++++++++- JSTimer/index.html | 2 +- JSTypedArray/index.html | 57 +++++++++++- JSValue/index.html | 114 ++++++++++++++++++++++- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 60 +++++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 1092 insertions(+), 46 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 37eac68dd..9cbecfce2 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -44,7 +44,78 @@

- +
+ + + + + + +%3 + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->ConstructibleFromJSValue + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->ConstructibleFromJSValue + + + + + +JSString + + +JSString + + + + + +JSString->ConstructibleFromJSValue + + + + + + + + +

Types Conforming to Constructible​From​JSValue

JSPromise
@@ -108,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 516e5de4b..a30f688ad 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -44,7 +44,78 @@

- +
+ + + + + + +%3 + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +TypedArrayElement + + +TypedArrayElement + + + + + +TypedArrayElement->ConvertibleToJSValue + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->ConvertibleToJSValue + + + + + +JSString + + +JSString + + + + + +JSString->ConvertibleToJSValue + + + + + + + + +

Types Conforming to Convertible​ToJSValue

JSPromise
@@ -85,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 71bb6da4c..ff3cf68d0 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -45,7 +45,60 @@

- +
+ + + + + + +%3 + + + +JSArray + + +JSArray + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSArray->JSBridgedClass + + + + + + + + +

Nested Types

JSArray.Iterator
@@ -195,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b6ae08a67..e5eafe78e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 40760cfd8..5c6b60953 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -40,7 +40,45 @@

public class Iterator: IteratorProtocol
- +
+ + + + + + +%3 + + + +JSArray.Iterator + + +JSArray.Iterator + + + + + +IteratorProtocol + +IteratorProtocol + + + +JSArray.Iterator->IteratorProtocol + + + + + + + + +

Member Of

JSArray
@@ -71,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index c316c5409..531e844c3 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -44,7 +44,108 @@

- +
+ + + + + + +%3 + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedType + + +JSBridgedType + + + + + +JSBridgedClass->JSBridgedType + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + + + + + +

Conforms To

JSBridgedType
@@ -111,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index e63b7875d..2e3c80044 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -45,7 +45,72 @@

- +
+ + + + + + +%3 + + + +JSBridgedType + + +JSBridgedType + + + + + +JSValueCompatible + +JSValueCompatible + + + +JSBridgedType->JSValueCompatible + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSBridgedClass->JSBridgedType + + + + + + + + +

Conforms To

CustomStringConvertible
@@ -80,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 7edb276cb..facb7775b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -62,7 +62,48 @@

- +
+ + + + + + +%3 + + + +JSClosure + + +JSClosure + + + + + +JSFunction + + +JSFunction + + + + + +JSClosure->JSFunction + + + + + + + + +

Superclass

JSFunction
@@ -137,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 01ef8b69c..85355adba 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -50,7 +50,60 @@

- +
+ + + + + + +%3 + + + +JSDate + + +JSDate + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable + + + + + + + + +

Conforms To

JSBridgedClass
@@ -375,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 1053db65d..39ae4022b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -46,7 +46,72 @@

- +
+ + + + + + +%3 + + + +JSError + + +JSError + + + + + +Error + +Error + + + +JSError->Error + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSError->JSBridgedClass + + + + + + + + +

Conforms To

JSBridgedClass
@@ -162,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 08d76a1ca..fdf34bc3a 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -53,7 +53,63 @@

- +
+ + + + + + +%3 + + + +JSFunction + + +JSFunction + + + + + +JSObject + + +JSObject + + + + + +JSFunction->JSObject + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSFunction + + + + + + + + +

Superclass

JSObject
@@ -209,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7c97ef997..ee76de2d4 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 58f02d189..bbc8e1421 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -58,7 +58,72 @@

- +
+ + + + + + +%3 + + + +JSObject + + +JSObject + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + + + + + + +

Subclasses

JSFunction
@@ -184,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index c2c7d84dd..f2b16600a 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c050e55df..ab35816cc 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,7 +62,63 @@

- +
+ + + + + + +%3 + + + +JSPromise + + +JSPromise + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +JSPromise->ConstructibleFromJSValue + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSPromise->ConvertibleToJSValue + + + + + + + + +

Conforms To

ConstructibleFromJSValue
@@ -157,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 526ec26ea..9adce3693 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -56,7 +56,99 @@

- +
+ + + + + + +%3 + + + +JSString + + +JSString + + + + + +Equatable + +Equatable + + + +JSString->Equatable + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +JSString->ConstructibleFromJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSString->ConvertibleToJSValue + + + + + + + + +

Conforms To

ConstructibleFromJSValue
@@ -164,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6968be4b2..c0cad9e12 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ede994a69..2b3b2b29a 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -45,7 +45,60 @@

- +
+ + + + + + +%3 + + + +JSTypedArray + + +JSTypedArray + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSTypedArray->JSBridgedClass + + + + + + + + +

Conforms To

JSBridgedClass
@@ -163,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 7314674fe..b83aedca5 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -44,7 +44,117 @@

- +
+ + + + + + +%3 + + + +JSValue + + +JSValue + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSValue->CustomStringConvertible + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSValue->ExpressibleByStringLiteral + + + + + +JSValueCompatible + +JSValueCompatible + + + +JSValue->JSValueCompatible + + + + + +Equatable + +Equatable + + + +JSValue->Equatable + + + + + +ExpressibleByFloatLiteral + +ExpressibleByFloatLiteral + + + +JSValue->ExpressibleByFloatLiteral + + + + + +ExpressibleByNilLiteral + +ExpressibleByNilLiteral + + + +JSValue->ExpressibleByNilLiteral + + + + + +ExpressibleByIntegerLiteral + +ExpressibleByIntegerLiteral + + + +JSValue->ExpressibleByIntegerLiteral + + + + + + + + +

Conforms To

CustomStringConvertible
@@ -340,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index b4973dd24..4ba3ae3dd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 0a2b25391..98283c1d6 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 16e86bb37..86561202f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 1da2e070c..2aca21348 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 37865eb9b..d707f40c6 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b34d4bde8..c9146d4c2 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -44,7 +44,63 @@

- +
+ + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +TypedArrayElement->ConstructibleFromJSValue + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +TypedArrayElement->ConvertibleToJSValue + + + + + + + + +

Conforms To

ConstructibleFromJSValue
@@ -77,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 5ceb622e8..c05d2e7ab 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index ac3f3a1bb..c613f8bf4 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index ca370c540..b2213d526 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 7895e5967..c25063f2f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index a75905a5b..bbcbae990 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.3. + Generated on using swift-doc 1.0.0-beta.5.

From 337771e0fa54989496ed1d3521b89c51d3686fa0 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 4 Oct 2020 14:11:54 +0000 Subject: [PATCH 042/148] deploy: 4b7981bc1b81a1f25e7aca851866d55913657d61 --- ConstructibleFromJSValue/index.html | 8 +-- ConvertibleToJSValue/index.html | 40 +++++------ JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 52 +++++++------- JSBridgedType/index.html | 2 +- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 46 ++++++------- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++---- JSString/index.html | 66 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 32 ++++----- JSValue/index.html | 84 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- all.css | Bin 14 -> 21044 bytes getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 31 files changed, 224 insertions(+), 224 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 9cbecfce2..35b95c901 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,7 +75,7 @@ - + JSPromise->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -105,7 +105,7 @@ - + JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index a30f688ad..e4b48cf90 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -105,7 +105,7 @@ - + JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index ff3cf68d0..51a35b597 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e5eafe78e..b43393e70 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5c6b60953..21315af92 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 531e844c3..743c084d4 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,19 +66,19 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + @@ -95,18 +95,18 @@ - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass @@ -120,25 +120,25 @@ - + JSTypedArray->JSBridgedClass - - -JSDate - - -JSDate + + +JSError + + +JSError - - -JSDate->JSBridgedClass - - + + +JSError->JSBridgedClass + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 2e3c80044..9994623fc 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index facb7775b..596d4c0c6 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 85355adba..3bbf9b2fe 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 39ae4022b..62eaadf5c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index fdf34bc3a..3e7425932 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ee76de2d4..1d0a3b758 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index bbc8e1421..27f2bb144 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,43 +80,43 @@

- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f2b16600a..1623da36b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index ab35816cc..4910df27e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 9adce3693..f370485b2 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -84,62 +84,62 @@

Equatable
- + JSString->Equatable + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSString->ConvertibleToJSValue + + + - + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - - + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue - - + + - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible JSString->LosslessStringConvertible - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSString->ConvertibleToJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index c0cad9e12..4dcb98da1 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 2b3b2b29a..a26f07ff2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index b83aedca5..757aadcb3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - + -JSValue->ExpressibleByStringLiteral +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 4ba3ae3dd..6be0c14d3 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 98283c1d6..48b85e40c 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 86561202f..7a2aa4ef6 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 2aca21348..044192996 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d707f40c6..55aeb2e7a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c9146d4c2..1ce92cdd1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/all.css b/all.css index 03bb56db90e8f14c670fe0593a49cb9de3fb89e6..82e45b4c8296527e4694defb10c2156ca2d613e2 100644 GIT binary patch literal 21044 zcmds9>yMkrmj74SX^lF4V+e0BR-(H%+N=JM?1vp`KI~|;!hjpLvGD-zM=byE`#bf3 z;^A&5lev*LRvKKKQ+4XR>r~;WuB!H^>&Kdy$-rZ%?zVu9` z{W&Yk>JjaU(s);A*)F?BU&5@l^xw}tY+ z4e_CF|2V{Wwo@MY4n9Q4zKoMBugWy5f&bJh6D=7xdY)$cxQ^SZR_Lwv@gIjwZ~8}x zk57n>g&u5*5|jsF5Qa>)9r5$eyD1DG`+?8Um5B@i+`#4ibM0Hl$^Bhj9d=9!nMRBU z9)L(jkB1)sshUNd@3T}N0LWgN@mRCath@1mvyiOc)8CuJeqYsXqrFM05@KL~-=swY z89wWKN3-a2b90QQrZ@v@8n$D(nrT>JXy5b_6Gl3V;f1cFnF_G5+*#mo0LjgH0thNh zX9+5T&?I6Ucd2yGjC}^j@obJmY;tVhRj8Jd4P20vaK7 zmMV*c|CmAZL!aOs+wuu5FnwjTJsH#liH5NP-y<~qQ{b87nZTQd=lL{yc>(SS$)1j4 z8h&UKgXLuzj*y%=Bq0@X8Kby!D514va~GE(=eWb0nNzrgx)}WL66_ce=g*C_bcqe( zFE~#)+*M8o&`hC?oo$|jgjskbLwWJ-fI99h^*ml^GdyuwnoQFamvt7?#TXb-Ts+fa zHZXC`(^-)Y5Z~k_@R=bn&pm~vA$kkweD)Mj$YCgriLal*3%DN33%rFQM-~cZkX%>^ zBaK}=lUrIRC)Lqkiroq8HRKWF+0cr_UPJeo2D5-ZfxzT~HFh0CbCi*gk;(ZVtreASOU;Zyv;nkiu$KNFdG_B+ud$MwoFJ^zhC` zU&E2sRr(w`)W`huBt}wvXgP?BF09FXn!}n#;vgX69g#B}WrM7ISG5_3A+}hU_z)(E z_ia(_z!*l3ML?4&Ng(?rpaQ9>9yd*u6v#N!_IaO0hq`?8QyRB%RBYqB>|OJ4_x5R9 zu97^io2-3*Xg7Me_}Tf02iilCJ^rJ5dVdXfty#nz)4bLIzH8oJ=WV->-o1N#d^8>% zqpI(~Rnw#nuYY#_13lDP(rV;p-e3Q0JDZJ@Y!XWxmHHbSwbd1hkjxD7PRGM2hy8^Ka@kTHl`%C|H-Bv6YIDY_3d+e0dL z>$`@v{OCJ|t2v(Lg@(ycE%a(pAC{HqfJQQ*Tdv^*T3~p#xV4r>Xg8kWxta}agdi>4 zB!OWf?rN58*tYH(zOPvhG6o$D<}$YcZzsADAlvi|GoWT(yl@51)Rxkc?$D1Yb(p$ggEwXTF zJ8-DN!+x!|z?$id?+xG}xc9w1&i=kO1K^#G3&2E6@O zAA)C~7jyin&34WIe|`^{eK(9+qv+?sO*$lkC1M{|Cl-mo406XYmNv28_HUuqK3MM< zVGa=2BPqaFi)I&oHMb!b`^#q%iK_(=TbS#H9h5qpe+Vb-csWei4nO&><}ZO=>OPsT z=jLGv7$6x=P8j&&1Jua_!*>B?pzy%}H4keYy7evU%ZH(fQ2vhMFLH`WB;Fi$$&a5T=AOhW?n__sqhxB1Mwc{*)70q9w&0RD&HxQPr4-6+;Dt+(b<>V z&^5vbN+j(|WwNiUJ<9UWKTaw?GIxj4J4nbW{w8qsz75l~kn0ng`&$=5A~d`uEuun~%jnBz_!G~{$=uNw%$-VyWWUJ6*)9IszrZ~p!G?{) zIk+LeftUXZ(X|!oAwN!ZKVSv>a$tuiCx^@BiRcXHNXsHvj89ht?7(WUmU1Cmx~CNz zp3v>B18D>gws{M=2B8!rYlSS~_HSJW@?4^Z3iqwUdm}HmpgF&IY-JZ}t^;pP3p?Zi zAOV?yt$6`*hdg|Miw<(b@)HmRMQ}Zh@&Nd23oytP*C?YK0#Ns&=X5M#1wu<-BKQ7-TLqZuVoC#a1Tj)sDI!Be(eQWie%tr z*Stg}GeO1V8&mQ#DT5OlPN?}#LLnJhoI{MZk(LZQ{I5E`VmzY3#kYT*YFeQ9Z3nlaVSGXH;|TXQ_tR#v=Su% zB>z?@?s@qD1Na~&q@_C1iAC8Gd7?UWxxmCO|b}7P1N06v_}hG4Q|(mLd2y&_Oa3&LR^7O}dRq zvl;>J5wE~EC@L8wWwvw&X26Mtm-;uV&c$UBpRXYNnaO_l65T^w7x5Yu=pR<` z{E_TL8bx89T>U4gA+|wTn7DPqk{l(xH!ZJ_PI;ev=rw+L8lkuI*X6`w)&!Ps$HvZvY6a1>i=z9?CzTAr+XZO_-Vx; zs^*D9HCxokb3Bh|cd|j<9Y;bQv-N#}9;llhAl~7C1({5iuF`_a&9v|@+j_+TpLcDZ zHANHcs$I4sigbYA0VLbBr`(D*McuS|wb9A=7P&ocaK;VpxWOAY_``|_n4OrDbUq1r=0Gl*7ZJxsY=i+ zCqpI>QJnVOK&6h)O6&UL-zC<%f~9XGb2U)wUHqWs_K|H?;)obO0L8z-3%^k}R@tWe zjj+$+OBPvmw&h=^?jf<8Dc{h28MuLMsD9N&a^d~s@_I8o|DzI zPje#jFn79i^T!m*0=D0@&j=CZ9~f9!Xk~Ha-h-%P!)5g;j%X8q5l0V2gDt7_$ec-v z{bEtwWj(}EUcr_o4{`8`cCj!<9K~=_57`8S;jb5z>h1100m8;HwUYr`Ob!jzH5W#6 z*n<1d42bXk&22~093swrv2}TKipk8&?1R$XNU-n+>R_6YW3vt}GjET|PBvpQj-O?_ zcD1f*OfItaPg+xzMXJf;bCU;B6~wtUt_0_|F9#D4JEAwMeVnEg8!TuIlL5{QfeiT8 z1aeuVo82PYE~E&VaElgBKbac;jfNv!imVNC5opq4p~=$Yj@+YY=Ac62LiNSzJXQ5c zZ*DlLV|BrP@sYV!z6^-0Q@mc+N5MGr6qPui`R0G)n+3nSujE~u%eyc6jhKQ^XrijEs0f?bmd}u3J_7mS;M)fb)Y<_RjN za8l*1rm{QQRPa7$nJ!?3Af~`0aR~6Pb&Al7O2AUX99Sp84h}6-Kqgr>Q2|E{0*usv z^3+c9y!|Ls&KO|?2W@u=j}kmt9XF1?PnkNU>2+>Rab94<6nJKiVroLQrOyfzsP>cI z$-K^=el>&!|mw z9-`NZ^DvAJFFhtDIRBh6X7pHU!3a$adTb3Le1N#`n8v;fi_}?WWzO*BMV8Dy?71=f zm@(qa6XL<_BR2j1NjLMZ>Ca3$ilp5zb5qZ=%k)s3+*f1d_-N(L3H{KrQF-un==!#S zhr@F8+q(b-f4+}zoq&`|=Y}Y++~BPYy-Dh-gc06FZFNZUQFL_!Cs=K<-jpc?3mP5r zbHqY?jYTn%TNxr&ebUVC5P-A)eq-L8Bo*J)H}d*`s$|o2awhCD6H5+tgQNEQs@UON z*lV#Aaq)uC$@3eQXNb}TzX)e3^?BstFN*_%p8hhoiz9Z~?~v1ZLR<)MeR(v}KCVHxeV(?Ne&fgg!45 z6m0NWTyf9|S!RmQHg7!|qGe~lce+N+Gzy%X1SMU))GN&V?b@|#{WOmWNW0%~DM zERPO_cx`Q=!~2#f9J6!si+?~L??1=MFYN0-QRrAG=gL{#;Os$e_LPrEles}b^T^uH zo>NyalymJsw0lH4PChxBt|0Q0?lzDdj&%00`UJ@VlBjbksB>r36;yfP9VH)`H=Qd@ zocMyCAv3OBT1;Z;)ncX`z%yS_SJ34mAGMXdt8FN`G^>oCs~(LWPAW)ZHB7Y&^VE_d z9Q$y->gP0fhF)QpJWP)_gyd~gq*=siAC)VpMAoK@Ha`xQ;3qUtmvG@!E~7UVc-2SQ zalmdwoN53Rset6onc7*$yYBgz0jIV`X{g`A(1@^c(|9;yzL>%HqC*<>1*PAU;IPz7 z@m4I47kqx*`zVS}_^LV~-WyWt(-7E15(Z+~KG!J0UC@pU7oG4szx?xawX5|1%I*%Z z_{HaJS5^x&#YwgJSnW{ejGM)$0#zq=vR5N$JUG-vR%`#6JubFrX!dxMm#LuC2w2yN zkNaU?mCtw8t}CN4ktj4Bk#Lj|GBhf&ex%n+|E<{4+oss@5`AcRNxRrL*+QVvk-+Yr zcQ3!v#@LY`A~@G4bL^thXFfcFeX*&$T{6-%Qf1l#xfKO$-9~!^Jk2nuTp#K z=JfY%mKL#wMIzqT*Wz8Oz3D}Xx3>3B$oMFT3t9U^SyQo9nHJ;i`4_7ul0}7xal3bU z!zuB;u@5s;d^RHLy1S7_y=XR9ykHEo%wY~FYu{mudDuVRj-%4@hu^Sr&fbenkl%kx z=yi?XwLQRvw_ueU9B!dK%9oMS;$egYloQQ?wwaFIg8PXrxY>hY-h|i9&m~QLdzUGS zDm28`F%;H@A!$TSkow)CiZFH=e#n2y+Lnx1qoD^uXha8#^@70y-K4#?Bgz?Z8`Tso z<%oP!662B5$`XcYKIALOQC`3pL|zRW!+il%R?O$M*fY zH0cuSx6fB$*|BP4*=jrpSY+s>%;#@geTif4n^-wlleFVL9lf ziKG}X5+0id!$xT*l^jO~vK_bnu8~KmqFFuW*qdXHl#1w&2)!pp*&hcu(j(pyr#JCs zZZr5fjm`p?W?%zkc9W5pT>Gc8t8S<9a@WjQqxVq(RVLLrbo(xRNHW2GCeR4x{*-+_ zW#^agy>>1RsC2Rt9dx_0a%1QiB&1AzW_X{1Q$=Wk~6GX?7fa}b#FXMEItl#)67 z37ne&rE%NV1*%BMd%L3vnsJ{!(|+%ut)y3n<5H3 z$_&wyYP*GvN#vPb8Zl)$m3Jc&4}KEm)l)AbDdPqfK^bx8OvXUcSM$UnG`waFd+U}S zO3|4X9sL?e*eW(F*?z|0Gy)xlV{wkT1#V6hwMIK7-fDow{l0Q)K`>GLGLyr}qY-M09$IH;j27=L1SwYH2HySa!ClEabNrb5|t~)!9z~2w&B^ zCf*DO)%|P}=ORRx=<5Z z&WFzBs$efMw}Znt@*US#h?8LRv%RB|06HsnIB12W>I+I327gEKm3}$Ue6RHDUg%W5 zSNBR!5^TONAyoje7rkEZi-FDeCG@U)*XNbaI=C~vv0o^}JiC`PUg@ucQ*jmsd1CYvE*ZchIPx(HW% literal 14 QcmZQzfB*%z{L;J>00xHw9RL6T diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index c05d2e7ab..a399111f4 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index c613f8bf4..adc7ab924 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index b2213d526..87291e409 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index c25063f2f..49b75e3c0 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index bbcbae990..fd19ce263 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 44b6c6099845e94349c6cc775c00e427f746dfc1 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 15 Oct 2020 03:32:00 +0000 Subject: [PATCH 043/148] deploy: 06a828e6356d11f55dda37e0585d0147d7a1cd8c --- ConstructibleFromJSValue/index.html | 34 +++++------ ConvertibleToJSValue/index.html | 52 ++++++++-------- JSArray/index.html | 34 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 78 ++++++++++++------------ JSBridgedType/index.html | 38 ++++++------ JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 42 ++++++------- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 ++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 ++++---- JSString/index.html | 50 +++++++-------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++------ JSValue/index.html | 68 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 280 insertions(+), 280 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 35b95c901..882edf5d7 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,38 +75,38 @@ - + JSPromise->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e4b48cf90..3e2ae6ad9 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 51a35b597..fac79b0b3 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b43393e70..8f322ac0e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 21315af92..9b36720a5 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 743c084d4..187d50357 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass - - -JSTypedArray - - -JSTypedArray + + +JSArray + + +JSArray - - -JSTypedArray->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 9994623fc..d266aff64 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,43 +67,43 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 596d4c0c6..e7d2c03e5 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 3bbf9b2fe..f1672f044 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 62eaadf5c..4aef6f029 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3e7425932..59733c843 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1d0a3b758..e70247a5a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 27f2bb144..9c08f89c1 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,37 +86,37 @@

Equatable
- + JSObject->Equatable - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1623da36b..b81d902c1 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4910df27e..11280321b 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSPromise->ConvertibleToJSValue +JSPromise->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSPromise->ConstructibleFromJSValue +JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index f370485b2..795f9771f 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,42 +77,42 @@

- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral + + +Equatable + +Equatable + + + +JSString->Equatable + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral @@ -126,7 +126,7 @@ - + JSString->ConstructibleFromJSValue @@ -138,7 +138,7 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 4dcb98da1..2a3ee7041 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index a26f07ff2..d02b5b60c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 757aadcb3..b725a1f57 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -37,7 +37,7 @@

JSValue

-
public enum JSValue
+
@dynamicMemberLookup public enum JSValue

JSValue represents a value in JavaScript.

@@ -65,27 +65,27 @@ - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -96,32 +96,32 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -132,20 +132,20 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 6be0c14d3..a8c3eb4e2 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 48b85e40c..df4b6b7f1 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 7a2aa4ef6..67df788e4 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 044192996..3a0470e2e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 55aeb2e7a..323d8311f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1ce92cdd1..7580c7d0e 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index a399111f4..2f7418342 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index adc7ab924..6288d862c 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 87291e409..4f1b24716 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 49b75e3c0..90cb19457 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index fd19ce263..ce4f65b4a 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 3a619b8de092bf842883268563d0ea3f5d9b0262 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 21 Oct 2020 09:45:49 +0000 Subject: [PATCH 044/148] deploy: 766d2e135af1397371384c1a4b2c0b95e423aec9 --- ConstructibleFromJSValue/index.html | 52 +++++++-------- ConvertibleToJSValue/index.html | 40 ++++++------ JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 78 +++++++++++------------ JSBridgedType/index.html | 38 +++++------ JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 36 +++++------ JSFunction/index.html | 14 ++--- JSFunctionRef/index.html | 2 +- JSObject/index.html | 6 +- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 80 ++++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 70 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++++---- all.css | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 31 files changed, 261 insertions(+), 261 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 882edf5d7..b6e102f57 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 3e2ae6ad9..6d8ca2a99 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue @@ -90,23 +90,23 @@ - + JSString->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index fac79b0b3..7026eaca4 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 8f322ac0e..93798409d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9b36720a5..4fcdaded2 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 187d50357..06e365056 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,50 +66,65 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + JSArray @@ -120,26 +135,11 @@ - + JSArray->JSBridgedClass - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d266aff64..687c95385 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,43 +67,43 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e7d2c03e5..03eb4d479 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index f1672f044..97611bdf1 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 4aef6f029..800f1b2d0 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -74,35 +74,35 @@

Error
- + JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 59733c843..b10676de3 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e70247a5a..ca2df1f26 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 9c08f89c1..b0873775b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,7 +86,7 @@

Equatable
- + JSObject->Equatable @@ -98,7 +98,7 @@ CustomStringConvertible - + JSObject->CustomStringConvertible @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index b81d902c1..bdc667855 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 11280321b..177a8232a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->ConstructibleFromJSValue @@ -108,7 +108,7 @@ - + JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 795f9771f..35928e27a 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - +ExpressibleByStringLiteral - - + -JSString->ConstructibleFromJSValue +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2a3ee7041..850248a00 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d02b5b60c..2e2156ea4 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index b725a1f57..663dfffd1 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,75 +65,75 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSValue->Equatable +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a8c3eb4e2..5296e1647 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index df4b6b7f1..6c4e82057 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 67df788e4..0cab91f1c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3a0470e2e..b6507e7b1 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 323d8311f..68aece648 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7580c7d0e..c4fe7dcef 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/all.css b/all.css index 82e45b4c8..199ada12f 100644 --- a/all.css +++ b/all.css @@ -1 +1 @@ -:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0130 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 110-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0170 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 11.05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 011.92.35V65a5.69 5.69 0 00-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71L19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0 .5em .2em 0;vertical-align:middle;display:inline-block}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:.4em}:matches(h1,h2,h3,h4,h5,h6)+:matches(h1,h2,h3,h4,h5,h6){margin-top:.4em}:is(p,ul,ol)+:is(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:matches(p,ul,ol)+:matches(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-feature-settings:"c2sc";font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{margin:0;list-style:none}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border-radius:4px;border:1px solid #e5e5ea;border:1px solid var(--separator);color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input [type=email]:focus,input[type=number],input [type=number]:focus,input[type=password],input [type=password]:focus,input[type=tel],input [type=tel]:focus,input[type=text],input [type=text]:focus,input[type=url],input [type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-webkit-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}:-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border-radius:4px;border:none;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;outline:0;box-shadow:0 0 0 3px rgba(0,136,204,.3);z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{width:100%;font:300 11pt/13pt sans-serif;font:var(--caption-1);caption-side:bottom;margin-bottom:2em}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{width:90vw;max-width:1280px;margin:1em auto}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{text-transform:uppercase;font-size:small;font-weight:300;letter-spacing:.1ch}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;padding:1em 0;font:300 11pt/13pt sans-serif;font:var(--caption-1)}@media screen and (max-width:768px){body{width:96vw;max-width:100%}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);text-align:left;padding:1em 0}body>nav{display:none}body>main{padding:0 1em}}@media screen and (max-width:768px){#relationships figure{display:none}section>[role=article][class] pre{margin-left:-2.5em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;overflow:auto;padding:0 1em 3em;position:-webkit-sticky;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-left:2em;margin-bottom:1em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:smaller;margin-bottom:2em;overflow-x:auto;padding:1em 1em 1em 3em;text-indent:-2em;white-space:pre}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{text-decoration:underline;color:#8e8e93;color:var(--placeholder-text)}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{max-width:100%;height:auto!important;margin:0 auto;display:block}h1 small{font-size:.5em;line-height:1.5;display:block;font-weight:400;color:#636366;color:var(--quaternary-label)}dd code,li code,p code{font-size:smaller;color:#3c3c43;color:var(--secondary-label)}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-size:1em;background-repeat:no-repeat;background-position:left .25em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{margin-bottom:1em;padding-bottom:1em;border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);padding-left:2em!important}section>[role=article]:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:none}dl dt[class],nav li[class]{list-style:none;text-indent:-1em;margin-bottom:.5em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:var(--icon-associatedtype);--link:var(--system-pink)}.case,.enumeration_case{--background-image:var(--icon-case);--link:var(--system-teal)}.class{--background-image:var(--icon-class);--link:var(--system-indigo)}.enumeration{--background-image:var(--icon-enumeration)}.enumeration,.extension{--link:var(--system-orange)}.extension{--background-image:var(--icon-extension)}.function{--background-image:var(--icon-function);--link:var(--system-green)}.initializer,.method{--background-image:var(--icon-method);--link:var(--system-blue)}.property{--background-image:var(--icon-property);--link:var(--system-teal)}.protocol{--background-image:var(--icon-protocol);--link:var(--system-pink)}.structure{--background-image:var(--icon-structure);--link:var(--system-purple)}.typealias{--background-image:var(--icon-typealias)}.typealias,.variable{--link:var(--system-green)}.variable{--background-image:var(--icon-variable)}.unknown{--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file +:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0130 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 110-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0170 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 11.05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 011.92.35V65a5.69 5.69 0 00-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71L19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0 .5em .2em 0;vertical-align:middle;display:inline-block}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:.4em}:matches(h1,h2,h3,h4,h5,h6)+:matches(h1,h2,h3,h4,h5,h6){margin-top:.4em}:is(p,ul,ol)+:is(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:matches(p,ul,ol)+:matches(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-feature-settings:"c2sc";font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{margin:0;list-style:none}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border-radius:4px;border:1px solid #e5e5ea;border:1px solid var(--separator);color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input [type=email]:focus,input[type=number],input [type=number]:focus,input[type=password],input [type=password]:focus,input[type=tel],input [type=tel]:focus,input[type=text],input [type=text]:focus,input[type=url],input [type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-webkit-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}:-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border-radius:4px;border:none;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;outline:0;box-shadow:0 0 0 3px rgba(0,136,204,.3);z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{width:100%;font:300 11pt/13pt sans-serif;font:var(--caption-1);caption-side:bottom;margin-bottom:2em}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{width:90vw;max-width:1280px;margin:1em auto}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{text-transform:uppercase;font-size:small;font-weight:300;letter-spacing:.1ch}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;padding:1em 0;font:300 11pt/13pt sans-serif;font:var(--caption-1)}@media screen and (max-width:768px){body{width:96vw;max-width:100%}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);text-align:left;padding:1em 0}body>nav{display:none}body>main{padding:0 1em}}@media screen and (max-width:768px){#relationships figure{display:none}section>[role=article][class] pre{margin-left:-2.5em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;overflow:auto;padding:0 1em 3em;position:-webkit-sticky;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-left:2em;margin-bottom:1em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:.75em;margin-bottom:2em;overflow-x:auto;text-indent:-2em;padding:1em 1em 1em 3em;white-space:pre-wrap}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{text-decoration:underline;color:#8e8e93;color:var(--placeholder-text)}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{max-width:100%;height:auto!important;margin:0 auto;display:block}h1 small{font-size:.5em;line-height:1.5;display:block;font-weight:400;color:#636366;color:var(--quaternary-label)}dd code,li code,p code{font-size:smaller;color:#3c3c43;color:var(--secondary-label)}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-size:1em;background-repeat:no-repeat;background-position:left .25em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{margin-bottom:1em;padding-bottom:1em;border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);padding-left:2em!important}section>[role=article]:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:none}dl dt[class],nav li[class]{list-style:none;text-indent:-1em;margin-bottom:.5em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:var(--icon-associatedtype);--link:var(--system-pink)}.case,.enumeration_case{--background-image:var(--icon-case);--link:var(--system-teal)}.class{--background-image:var(--icon-class);--link:var(--system-indigo)}.enumeration{--background-image:var(--icon-enumeration)}.enumeration,.extension{--link:var(--system-orange)}.extension{--background-image:var(--icon-extension)}.function{--background-image:var(--icon-function);--link:var(--system-green)}.initializer,.method{--background-image:var(--icon-method);--link:var(--system-blue)}.property{--background-image:var(--icon-property);--link:var(--system-teal)}.protocol{--background-image:var(--icon-protocol);--link:var(--system-pink)}.structure{--background-image:var(--icon-structure);--link:var(--system-purple)}.typealias{--background-image:var(--icon-typealias)}.typealias,.variable{--link:var(--system-green)}.variable{--background-image:var(--icon-variable)}.unknown{--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 2f7418342..dd2fcb1b4 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 6288d862c..e419ce3cd 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 4f1b24716..6d4cfc950 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 90cb19457..f08628f99 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index ce4f65b4a..cf4836de2 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From b91686f20a12c4611aa0acebac7ebfaac0427345 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 21 Oct 2020 11:03:43 +0000 Subject: [PATCH 045/148] deploy: 0cbb857f0f20376e06caa4f3728fea25c2e49562 --- ConstructibleFromJSValue/index.html | 38 ++++++------- ConvertibleToJSValue/index.html | 38 ++++++------- JSArray/index.html | 32 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 64 ++++++++++----------- JSBridgedType/index.html | 28 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 32 +++++------ JSFunction/index.html | 10 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 30 +++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 72 ++++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 66 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 243 insertions(+), 243 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index b6e102f57..90bca03ba 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,18 +65,18 @@ - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue @@ -90,23 +90,23 @@ - + TypedArrayElement->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 6d8ca2a99..748622ad1 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@
- - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConvertibleToJSValue +JSPromise->ConvertibleToJSValue @@ -105,7 +105,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 7026eaca4..eb846b35e 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 93798409d..588c41bd1 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 4fcdaded2..3b5360d52 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 06e365056..9fae14658 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,68 +75,68 @@

- + JSBridgedClass->JSBridgedType - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 687c95385..d5b47b373 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 03eb4d479..d1d6a0d1f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 97611bdf1..e5a044226 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -81,7 +81,7 @@

- + JSDate->JSBridgedClass @@ -93,7 +93,7 @@ Comparable - + JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 800f1b2d0..5d3e6db74 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -79,30 +79,30 @@

- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b10676de3..91bd424e5 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ca2df1f26..21e6b6389 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index b0873775b..401be8244 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,16 +80,16 @@

- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + @@ -98,25 +98,25 @@ CustomStringConvertible - + JSObject->CustomStringConvertible - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index bdc667855..938d782d8 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 177a8232a..31510c93e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->ConstructibleFromJSValue @@ -108,7 +108,7 @@ - + JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 35928e27a..d94d7d581 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 850248a00..9218e2abd 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 2e2156ea4..924405833 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 663dfffd1..3ec235a3a 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,15 +65,15 @@

- + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -84,20 +84,20 @@ Equatable - + JSValue->Equatable - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible @@ -108,44 +108,44 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5296e1647..5a0622e7e 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 6c4e82057..52a8bd575 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0cab91f1c..973e173d1 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b6507e7b1..c76ebe1ba 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 68aece648..0bd422843 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c4fe7dcef..5ca84a9b6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index dd2fcb1b4..40748226b 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index e419ce3cd..f2e4fcd0b 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 6d4cfc950..bd9046105 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index f08628f99..66c8b300c 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index cf4836de2..c5eb18fdb 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 36a6465d282aa676aaf56e068c5083b862272d47 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 21 Oct 2020 12:43:40 +0000 Subject: [PATCH 046/148] deploy: 8ba4135d5fd6a734c3771ef3fac66896bbcb0214 --- ConstructibleFromJSValue/index.html | 8 +-- ConvertibleToJSValue/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 76 +++++++++++----------- JSBridgedType/index.html | 30 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 46 ++++++------- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 38 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++----- JSString/index.html | 82 ++++++++++++------------ JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 52 +++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 221 insertions(+), 221 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 90bca03ba..fb95a01d9 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,7 +75,7 @@ - + JSPromise->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -105,7 +105,7 @@ - + JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 748622ad1..a16805f28 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index eb846b35e..6c32fe8e8 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -73,7 +73,7 @@

RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -88,7 +88,7 @@ - + JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 588c41bd1..537827d14 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3b5360d52..9cf8e42a8 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 9fae14658..f4f235806 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,34 +66,19 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - + + @@ -105,40 +90,55 @@ - + JSError->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d5b47b373..800b3729f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -85,25 +85,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d1d6a0d1f..a1f98b187 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index e5a044226..285911620 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 5d3e6db74..81a6dcdc7 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 91bd424e5..c4e245595 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 21e6b6389..e6d7771f1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 401be8244..839285ece 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,43 +80,43 @@

- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 938d782d8..650bff782 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 31510c93e..b210daaf5 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index d94d7d581..04373c33e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 9218e2abd..d115d77ab 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 924405833..d8c70e7e6 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 3ec235a3a..692c8fb38 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -72,7 +72,7 @@

ExpressibleByIntegerLiteral
- + JSValue->ExpressibleByIntegerLiteral @@ -84,32 +84,32 @@ Equatable - + JSValue->Equatable - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -125,27 +125,27 @@ - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5a0622e7e..f2c3e2395 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 52a8bd575..4db52c44f 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 973e173d1..f7b7ee76e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c76ebe1ba..9388e28cf 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 0bd422843..985ac113c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 5ca84a9b6..b43f24370 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 40748226b..aa58b6d58 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index f2e4fcd0b..fc4569a8a 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index bd9046105..e2096409c 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 66c8b300c..09b5cdfbc 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index c5eb18fdb..9b8a8627a 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 7ab1749426717f882765162a51835f0d323ad5a4 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 21 Oct 2020 12:47:11 +0000 Subject: [PATCH 047/148] deploy: 34f2f7535e8e0335896047bf64d181ece87c85c1 --- ConstructibleFromJSValue/index.html | 52 +++++++------- ConvertibleToJSValue/index.html | 54 +++++++-------- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 88 ++++++++++++------------ JSBridgedType/index.html | 46 ++++++------- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++----- JSError/index.html | 26 +++---- JSFunction/index.html | 14 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 46 ++++++------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++---- JSString/index.html | 72 +++++++++---------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 74 ++++++++++---------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 288 insertions(+), 288 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index fb95a01d9..c185422eb 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index a16805f28..926a77879 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 6c32fe8e8..83ea7776d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 537827d14..d8174ccb9 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9cf8e42a8..d9e9dcb4b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f4f235806..ed1e92e85 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + -JSError - +JSDate + -JSError +JSDate - + -JSError->JSBridgedClass +JSDate->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - + -JSDate->JSBridgedClass +JSTypedArray->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 800b3729f..014222958 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,44 +66,44 @@

- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - + -JSBridgedType->JSValueCompatible - - +JSBridgedType->CustomStringConvertible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index a1f98b187..197b9fe92 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 285911620..a3d745574 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 81a6dcdc7..371e04b17 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,32 +77,32 @@

- + JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c4e245595..5600b38c9 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e6d7771f1..75938a7ad 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 839285ece..aa5778631 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,44 +79,44 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 650bff782..d9ba9f3db 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index b210daaf5..2e54e1244 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 04373c33e..4b8d0bc7e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -84,62 +84,62 @@

ExpressibleByStringLiteral
- + JSString->ExpressibleByStringLiteral - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d115d77ab..cf9c8b4cd 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d8c70e7e6..a8011cb62 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 692c8fb38..01fcdd9b3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -72,80 +72,80 @@

ExpressibleByIntegerLiteral
- + JSValue->ExpressibleByIntegerLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index f2c3e2395..3a46ec9f6 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 4db52c44f..52237dee0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f7b7ee76e..28278a325 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 9388e28cf..57cbfe1cc 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 985ac113c..bd8d6391c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b43f24370..ec139b35f 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index aa58b6d58..aa53a990f 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index fc4569a8a..917b4e3fa 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index e2096409c..605e34dd8 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 09b5cdfbc..9534ffb85 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 9b8a8627a..9568b673e 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 36ce2737216ceaac39985dc33ff81ef51e467904 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 22 Oct 2020 16:24:48 +0000 Subject: [PATCH 048/148] deploy: 16ec18d74b3e82cd46a74a19c31c7a060d07f7aa --- ConstructibleFromJSValue/index.html | 52 +++++++-------- ConvertibleToJSValue/index.html | 40 ++++++------ JSArray/index.html | 34 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 ++++++++++++------------ JSBridgedType/index.html | 28 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 2 +- JSError/index.html | 36 +++++------ JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 ++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 26 ++++---- JSString/index.html | 62 +++++++++--------- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 74 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 30 files changed, 256 insertions(+), 256 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index c185422eb..6a399d56e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 926a77879..d2adfff53 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@
- - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -90,23 +90,23 @@ - + TypedArrayElement->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 83ea7776d..fa9f4719a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index d8174ccb9..f02008657 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d9e9dcb4b..79570c41d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ed1e92e85..0bfb7ca7f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,79 +66,79 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass +JSTypedArray->JSBridgedClass - - -JSTypedArray - - -JSTypedArray + + +JSError + + +JSError - + -JSTypedArray->JSBridgedClass - - +JSError->JSBridgedClass + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 014222958..42ec7d0e3 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 197b9fe92..711ce0adb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index a3d745574..fd0c4a1f2 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 371e04b17..7318cc9a9 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,15 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error @@ -89,20 +86,23 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 5600b38c9..9ddc89416 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -265,7 +265,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 75938a7ad..f882c989e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index aa5778631..a6812d16f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,16 +80,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - + + @@ -98,25 +98,25 @@ Equatable - + JSObject->Equatable - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -249,7 +249,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index d9ba9f3db..67287daa2 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2e54e1244..50be7ef7d 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSPromise->ConstructibleFromJSValue +JSPromise->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSPromise->ConvertibleToJSValue +JSPromise->ConstructibleFromJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 4b8d0bc7e..eb7df611c 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -84,62 +84,62 @@

ExpressibleByStringLiteral
- + JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index cf9c8b4cd..62f794435 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index a8011cb62..6baf074d0 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 01fcdd9b3..46b503f78 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,75 +65,75 @@

- + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -144,7 +144,7 @@ Equatable - + JSValue->Equatable @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 3a46ec9f6..76f2f5fe7 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 52237dee0..09896faac 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 28278a325..589e2191c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 57cbfe1cc..eea54b9a6 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index bd8d6391c..b2f2c1c7a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ec139b35f..4e9ea4262 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index aa53a990f..46577a342 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 917b4e3fa..c0e8c810a 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 605e34dd8..01948774b 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9534ffb85..9ac5dd89d 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 9568b673e..6c078b8d0 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 452b82c49cf40931126a551b4d28b9919e2711bf Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 23 Oct 2020 16:42:29 +0000 Subject: [PATCH 049/148] deploy: 6f31fc3b17db7153038dfde43230be141e51b1cd --- ConstructibleFromJSValue/index.html | 40 ++--- ConvertibleToJSValue/index.html | 30 ++-- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 +++++----- JSBridgedType/index.html | 42 +++--- JSClosure/index.html | 2 +- JSDate/index.html | 34 ++--- JSError/index.html | 48 +++--- JSFunction/index.html | 38 ++++- JSFunctionRef/index.html | 2 +- JSObject/index.html | 72 ++++++--- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++-- JSString/index.html | 80 +++++----- JSThrowingFunction/index.html | 179 +++++++++++++++++++++++ JSThrowingObject/index.html | 69 +++++++++ JSTimer/index.html | 2 +- JSTypedArray/index.html | 32 ++-- JSValue/index.html | 70 ++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++-- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 22 ++- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 625 insertions(+), 307 deletions(-) create mode 100644 JSThrowingFunction/index.html create mode 100644 JSThrowingObject/index.html diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 6a399d56e..f4c120696 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,33 +65,33 @@ - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -105,7 +105,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index d2adfff53..b50a86737 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index fa9f4719a..b7ed2f81d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f02008657..814da1ccd 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 79570c41d..526446c43 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0bfb7ca7f..04b28f227 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,79 +66,79 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass - - +JSDate->JSBridgedClass + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 42ec7d0e3..485f8ffc9 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,44 +66,44 @@

- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - + -JSBridgedType->JSValueCompatible - - +JSBridgedType->CustomStringConvertible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 711ce0adb..0293353b5 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index fd0c4a1f2..74b7b2a1d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 7318cc9a9..8914a519e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error - -Error - - - -JSError->Error - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSError->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass + + + + + +Error + +Error + + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 9ddc89416..80aaaa39c 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -26,7 +26,7 @@ @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -129,6 +129,32 @@

Subclasses

+
+

Properties

+ +
+

+ `throws` +

+
var `throws`: JSThrowingFunction
+
+

A modifier to call this function as a throwing function

+ +
+
+
function validateAge(age) {
+  if (age < 0) {
+    throw new Error("Invalid age");
+  }
+}
+
+ +
let validateAge = JSObject.global.validateAge.function!
+try validateAge.throws(20)
+
+
+
+

Methods

@@ -265,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f882c989e..10d127548 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index a6812d16f..17c9870db 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -26,7 +26,7 @@ @@ -79,44 +79,44 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -140,7 +140,31 @@

Conforms To

Properties

-
+
+

+ `throwing` +

+
var `throwing`: JSThrowingObject
+
+

A modifier to call methods as throwing methods capturing this

+ +
+
+
const animal = {
+  validateAge: function() {
+    if (this.age < 0) {
+      throw new Error("Invalid age");
+    }
+  }
+}
+
+ +
let animal = JSObject.global.animal.object!
+try animal.throwing.validateAge!()
+
+
+
+

global

@@ -249,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 67287daa2..d085c4f55 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 50be7ef7d..afa8b0182 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index eb7df611c..26dc29f28 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConvertibleToJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html new file mode 100644 index 000000000..af84cd446 --- /dev/null +++ b/JSThrowingFunction/index.html @@ -0,0 +1,179 @@ + + + + + + JavaScriptKit - JSThrowingFunction + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSThrowing​Function +

+ +
public class JSThrowingFunction
+
+

A JSFunction wrapper that enables throwing function calls. +Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ +
+

Initializers

+ +
+

+ init(_:​) +

+
public init(_ base: JSFunction)
+
+
+
+

Methods

+ +
+

+ call​AsFunction(this:​arguments:​) +

+
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) throws -> JSValue
+
+

Call this function with given arguments and binding given this as context.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
thisJSObject?

The value to be passed as the this parameter to this function.

+
arguments[Convertible​ToJSValue]

Arguments to be passed to this function.

+
+

Returns

+

The result of this call.

+ +
+
+

+ call​AsFunction(this:​_:​) +

+
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue) throws -> JSValue
+
+

A variadic arguments version of callAsFunction.

+ +
+
+
+

+ new(arguments:​) +

+
public func new(arguments: [ConvertibleToJSValue]) throws -> JSObject
+
+

Instantiate an object from this function as a throwing constructor.

+ +
+
+

Guaranteed to return an object because either:

+ +
    +
  • +

    a. the constructor explicitly returns an object, or

    +
  • +
  • +

    b. the constructor returns nothing, which causes JS to return the this value, or

    +
  • +
  • +

    c. the constructor returns undefined, null or a non-object, in which case JS also returns this.

    +
  • +
+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
arguments[Convertible​ToJSValue]

Arguments to be passed to this constructor function.

+
+

Returns

+

A new instance of this constructor.

+ +
+
+

+ new(_:​) +

+
public func new(_ arguments: ConvertibleToJSValue) throws -> JSObject
+
+

A variadic arguments version of new.

+ +
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html new file mode 100644 index 000000000..d8d82e393 --- /dev/null +++ b/JSThrowingObject/index.html @@ -0,0 +1,69 @@ + + + + + + JavaScriptKit - JSThrowingObject + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSThrowing​Object +

+ +
@dynamicMemberLookup public class JSThrowingObject
+
+

A JSObject wrapper that enables throwing method calls capturing this. +Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ +
+

Initializers

+ +
+

+ init(_:​) +

+
public init(_ base: JSObject)
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSTimer/index.html b/JSTimer/index.html index 62f794435..b41069136 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6baf074d0..f53221386 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 46b503f78..006d85cb8 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,39 +65,39 @@

- + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -113,39 +113,39 @@ - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - + -JSValue->ExpressibleByNilLiteral +JSValue->Equatable - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 76f2f5fe7..fee5d99c8 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 09896faac..c120c2178 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 589e2191c..e84dbe59e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index eea54b9a6..b8750fb6c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index b2f2c1c7a..72ada28a2 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4e9ea4262..9d3e57e48 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 46577a342..4c603743d 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index c0e8c810a..1695c671f 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 01948774b..3379181dd 100644 --- a/index.html +++ b/index.html @@ -131,6 +131,16 @@

Classes

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

+ +
+ + JSThrowing​Function + +
+
+

A JSFunction wrapper that enables throwing function calls. +Exceptions produced by JavaScript functions will be thrown as JSValue.

+
@@ -155,6 +165,16 @@

Classes

Any member access like object.foo will dynamically request the JavaScript and Swift runtime bridge library for a member with the specified name in this object.

+ +
+ + JSThrowing​Object + +
+
+

A JSObject wrapper that enables throwing method calls capturing this. +Exceptions produced by JavaScript functions will be thrown as JSValue.

+
@@ -349,7 +369,7 @@

Functions

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9ac5dd89d..f4a6ed8d3 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 6c078b8d0..ebb3e723d 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 93f4e0c384ffe6e730f1ebeb678a77f0f44cf205 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 26 Oct 2020 08:19:06 +0000 Subject: [PATCH 050/148] deploy: 6c8c705e02f07ae50e1cdddd1e50f4e77fe64bd2 --- ConstructibleFromJSValue/index.html | 40 +++++------ ConvertibleToJSValue/index.html | 52 +++++++------- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 86 ++++++++++++------------ JSBridgedType/index.html | 28 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++----- JSError/index.html | 28 ++++---- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 ++++---- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++----- JSString/index.html | 52 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 54 +++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 255 insertions(+), 255 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index f4c120696..689d7a927 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,18 +65,18 @@ - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -90,23 +90,23 @@ - + JSString->ConstructibleFromJSValue - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b50a86737..c7d9b7792 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConvertibleToJSValue +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index b7ed2f81d..446336e45 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 814da1ccd..d5fb2fc45 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 526446c43..7bc07802b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 04b28f227..8911994ba 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - - -JSArray - - -JSArray + + +JSDate + + +JSDate - - -JSArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 485f8ffc9..d84f59581 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + @@ -91,19 +91,19 @@ - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0293353b5..7a438a605 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 74b7b2a1d..06fa5c438 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 8914a519e..3bef40caf 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,15 +67,15 @@

- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -89,20 +89,20 @@
- + JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 80aaaa39c..32eef20ee 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 10d127548..ff6a41c4b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 17c9870db..54f5e3081 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,16 +80,16 @@

- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + @@ -98,25 +98,25 @@ CustomStringConvertible - + JSObject->CustomStringConvertible - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index d085c4f55..727d0bb67 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index afa8b0182..d58484ffc 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 26dc29f28..3ec2b1344 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,30 +77,30 @@

- - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - +LosslessStringConvertible - - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue @@ -111,7 +111,7 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral @@ -123,23 +123,23 @@ Equatable - + JSString->Equatable - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSString->ConvertibleToJSValue +JSString->ConstructibleFromJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index af84cd446..1755b8ecc 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index d8d82e393..b5cc2ebb8 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b41069136..ba838debc 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f53221386..0c5638562 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -73,7 +73,7 @@

ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -88,7 +88,7 @@ - + JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 006d85cb8..c0a417e46 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -72,44 +72,44 @@

CustomStringConvertible
- + JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral @@ -120,7 +120,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -132,20 +132,20 @@ Equatable - + JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index fee5d99c8..0da5f3472 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c120c2178..ef66ecebb 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e84dbe59e..2457ba33f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b8750fb6c..39f311f00 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 72ada28a2..78d126a87 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 9d3e57e48..09f6e2b95 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 4c603743d..f9d3a84da 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 1695c671f..8916db338 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 3379181dd..0a50b6c71 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index f4a6ed8d3..d90826b45 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index ebb3e723d..e1ffef08f 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 926d9ebdf316e31c4639100fd8d9177737462efb Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 26 Oct 2020 10:03:07 +0000 Subject: [PATCH 051/148] deploy: 2a90f54a4732ed4a332769f91e62ba98167eb668 --- ConstructibleFromJSValue/index.html | 38 ++++++------ ConvertibleToJSValue/index.html | 34 +++++------ JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 76 ++++++++++++------------ JSBridgedType/index.html | 28 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 32 +++++----- JSError/index.html | 38 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 28 ++++----- JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 72 +++++++++++----------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 76 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 252 insertions(+), 252 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 689d7a927..7ff320bc7 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,38 +75,38 @@ - + TypedArrayElement->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index c7d9b7792..78cf9e1a9 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -95,18 +95,18 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 446336e45..2b5eda109 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index d5fb2fc45..df9a95d8f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7bc07802b..d569cc6dc 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 8911994ba..877cdb2a8 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,49 +66,49 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSError - - -JSError + + +JSArray + + +JSArray - - -JSError->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - - -JSDate - - -JSDate + + +JSError + + +JSError - + -JSDate->JSBridgedClass - - +JSError->JSBridgedClass + + @@ -120,23 +120,23 @@ - + JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d84f59581..2774a01f8 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + @@ -85,25 +85,25 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 7a438a605..7ddf1a63f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 06fa5c438..0b6ab9d6c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 3bef40caf..6b6f61320 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -74,35 +74,35 @@

Error
- + JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 32eef20ee..7f0d1d2fa 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ff6a41c4b..e30106ad6 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 54f5e3081..dadc23dbf 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,27 +79,27 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable @@ -113,7 +113,7 @@ - + JSFunction->JSObject @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 727d0bb67..e47b937c7 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d58484ffc..3cdc7b22b 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->ConvertibleToJSValue @@ -108,7 +108,7 @@ - + JSPromise->ConstructibleFromJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 3ec2b1344..11a8c3228 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - + -JSString->ExpressibleByStringLiteral +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1755b8ecc..2f2994948 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index b5cc2ebb8..72c8be64b 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index ba838debc..d06daacf2 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0c5638562..46a5730c2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index c0a417e46..ee1b43c3e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,15 +65,15 @@

- + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -84,68 +84,68 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 0da5f3472..c12c150f6 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ef66ecebb..1f5e54389 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 2457ba33f..2fd0cacbe 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 39f311f00..8f6d0c228 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 78d126a87..72e33c84b 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 09f6e2b95..7946cce3c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index f9d3a84da..4f269c1b4 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 8916db338..50d42309d 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 0a50b6c71..5ea1edbbd 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index d90826b45..ce03f67a1 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index e1ffef08f..e65da1684 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From b24a18a534575164b20e33f198f0698d2b9ae26e Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 26 Oct 2020 10:08:23 +0000 Subject: [PATCH 052/148] deploy: 26a83a61b2370bba7d15cf34e726a145507ffc0f --- ConstructibleFromJSValue/index.html | 48 ++++++------- ConvertibleToJSValue/index.html | 34 ++++----- JSArray/index.html | 34 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 90 ++++++++++++------------ JSBridgedType/index.html | 30 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 32 ++++----- JSError/index.html | 48 ++++++------- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 42 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 78 ++++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 ++++----- JSValue/index.html | 66 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +-------------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 294 insertions(+), 346 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7ff320bc7..483f05be3 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 78cf9e1a9..d421c58b3 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -95,18 +95,18 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 2b5eda109..93cc6c47d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

+ + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index df9a95d8f..6a3464f75 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d569cc6dc..ba516adfd 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 877cdb2a8..a372ed483 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 2774a01f8..fe99df1c3 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -73,37 +73,37 @@

JSValueCompatible
- + JSBridgedType->JSValueCompatible - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 7ddf1a63f..c320137ec 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 0b6ab9d6c..1c3d9babd 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 6b6f61320..7323d1a80 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 7f0d1d2fa..ba09ee556 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e30106ad6..5cca3f7a3 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index dadc23dbf..2de77d3f5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + CustomStringConvertible @@ -86,37 +98,25 @@ CustomStringConvertible - + JSObject->CustomStringConvertible - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e47b937c7..af70b24a6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 3cdc7b22b..38cd18312 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 11a8c3228..153fa5a41 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - + -JSString->ConstructibleFromJSValue +JSString->Equatable - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - + + -JSString->Equatable +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 2f2994948..c20082926 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 72c8be64b..c2a7948fd 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d06daacf2..2280424b9 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 46a5730c2..3caa7c00b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index ee1b43c3e..3f21b5ee9 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,15 +65,15 @@

- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable @@ -84,7 +84,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -96,56 +96,56 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index c12c150f6..38fcd4202 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 1f5e54389..03961e06a 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 2fd0cacbe..0e733d0ec 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 8f6d0c228..3eb265291 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 72e33c84b..1d203b7d3 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7946cce3c..ecb7dae91 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,59 +45,7 @@

- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - - +
@@ -133,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 4f269c1b4..08bec6d1b 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 50d42309d..793ada916 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 5ea1edbbd..21eaa6835 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index ce03f67a1..39f02e1c1 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index e65da1684..ee6ad2d1a 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 544292c18cca15200f5caca9a7c0f2eb2f51117d Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 6 Nov 2020 15:31:17 +0000 Subject: [PATCH 053/148] deploy: c272a08a024cc387a7247e47d3dee260a631156f --- ConstructibleFromJSValue/index.html | 52 +++++++-------- ConvertibleToJSValue/index.html | 52 +++++++-------- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 52 +++++++-------- JSBridgedType/index.html | 40 ++++++------ JSClosure/index.html | 2 +- JSDate/index.html | 34 +++++----- JSError/index.html | 48 +++++++------- JSFunction/index.html | 14 ++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 8 +-- JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 70 ++++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 82 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 317 insertions(+), 265 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 483f05be3..87332f62a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index d421c58b3..bf896e179 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 93cc6c47d..f14278988 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6a3464f75..213ef0830 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ba516adfd..e8da77ce8 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a372ed483..518e88b09 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,53 +75,53 @@

- + JSBridgedClass->JSBridgedType - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -135,7 +135,7 @@ - + JSError->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fe99df1c3..dee0b40aa 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,43 +67,43 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c320137ec..58d365a12 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 1c3d9babd..9da5cdae5 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 7323d1a80..a87ba861b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ba09ee556..55a7bf35d 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,31 +75,31 @@

- + JSObject - + JSObject - + JSFunction->JSObject - + JSClosure - + JSClosure - + JSClosure->JSFunction @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 5cca3f7a3..2f759fede 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 2de77d3f5..683097457 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -86,7 +86,7 @@

Equatable
- + JSObject->Equatable @@ -98,7 +98,7 @@ CustomStringConvertible - + JSObject->CustomStringConvertible @@ -113,7 +113,7 @@ - + JSFunction->JSObject @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index af70b24a6..366d770fb 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 38cd18312..60554d0af 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 153fa5a41..ca814f378 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c20082926..8177daa0f 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c2a7948fd..7b714a2b1 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2280424b9..af481b972 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 3caa7c00b..947cc936a 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 3f21b5ee9..73560c75b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 38fcd4202..7c4123e12 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 03961e06a..9f45b4b95 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0e733d0ec..a38cbc7dd 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3eb265291..f4892a829 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1d203b7d3..16e8b02a1 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ecb7dae91..3d2d1b7a5 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +TypedArrayElement->ConstructibleFromJSValue + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +TypedArrayElement->ConvertibleToJSValue + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 08bec6d1b..abf71ae74 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 793ada916..11e36e57b 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 21eaa6835..66dfa187b 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 39f02e1c1..f975b5a12 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index ee6ad2d1a..32dbf0b21 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 3d9606ccb9527376e5db42f519a92859cadccd66 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 27 Nov 2020 09:21:52 +0000 Subject: [PATCH 054/148] deploy: b7a02434c6e973c08c3fd5069105ef44dd82b891 --- ConstructibleFromJSValue/index.html | 48 +++++++------- ConvertibleToJSValue/index.html | 38 +++++------ JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 ++++++++++++------------ JSBridgedType/index.html | 30 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 32 +++++----- JSError/index.html | 36 +++++------ JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 ++++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 80 ++++++++++++------------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 80 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++++----- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 273 insertions(+), 273 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 87332f62a..ef054e5ad 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index bf896e179..b5661f2d4 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@ - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index f14278988..b5105e053 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -73,7 +73,7 @@

RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -88,7 +88,7 @@ - + JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 213ef0830..aa15b3898 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e8da77ce8..65b23831a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 518e88b09..0a0312523 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,79 +66,79 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index dee0b40aa..fd169cd72 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + @@ -85,25 +85,25 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 58d365a12..d914d5f5c 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 9da5cdae5..393733bb8 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index a87ba861b..908d2b7f5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,30 +67,30 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -101,7 +101,7 @@ Error - + JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 55a7bf35d..0e7255cb4 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 2f759fede..1a595dbe2 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 683097457..a8e63ab16 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,18 +79,6 @@

- - -Equatable - -Equatable - - - -JSObject->Equatable - - - CustomStringConvertible @@ -98,25 +86,37 @@ CustomStringConvertible - + JSObject->CustomStringConvertible + + +Equatable + +Equatable + + + +JSObject->Equatable + + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 366d770fb..280c5f5bc 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 60554d0af..2823daaac 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index ca814f378..c01be53f9 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - + -JSString->ConvertibleToJSValue +JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - +LosslessStringConvertible - - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 8177daa0f..96c028e62 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 7b714a2b1..45e7c6b53 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index af481b972..6a6b9cfb3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 947cc936a..80043875f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -73,7 +73,7 @@

ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -88,7 +88,7 @@ - + JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 73560c75b..d7ab9a4d0 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - + -JSValue->Equatable +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - + -JSValue->ExpressibleByFloatLiteral +JSValue->CustomStringConvertible @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7c4123e12..80866eb27 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 9f45b4b95..c5f876236 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a38cbc7dd..800c6ac9e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f4892a829..c6d952ece 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 16e8b02a1..79e3c3abe 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 3d2d1b7a5..40fe71b9c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index abf71ae74..41d1020bf 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 11e36e57b..3aaf9cc65 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 66dfa187b..3ae44772c 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index f975b5a12..d4e2ded80 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 32dbf0b21..f73b7541d 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 156f93e043321e548246db7cc730eb80decfed32 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 4 Dec 2020 00:57:49 +0000 Subject: [PATCH 055/148] deploy: a4153534571f624783b572eedfbf265e54aad1f5 --- ConstructibleFromJSValue/index.html | 34 +++++------ ConvertibleToJSValue/index.html | 52 ++++++++-------- JSArray/index.html | 34 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 74 +++++++++++------------ JSBridgedType/index.html | 28 ++++----- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 2 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 46 +++++++------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 56 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 8 +-- JSValue/index.html | 76 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 ++++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 4 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 244 insertions(+), 244 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ef054e5ad..314e3e24b 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -80,33 +80,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b5661f2d4..d63db9055 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->ConvertibleToJSValue +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index b5105e053..a28f0e616 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index aa15b3898..8343e367a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 65b23831a..4d2c68614 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0a0312523..2b0edf287 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,34 +66,19 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - + + @@ -105,40 +90,55 @@ - + JSDate->JSBridgedClass - + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + JSError - - -JSError + + +JSError JSError->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + @@ -175,7 +175,7 @@

Types Conforming to JSBridged​Class

JSTypedArray

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

+FIXME: BigInt-based TypedArrays are currently not supported.

@@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fd169cd72..d58e224a0 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d914d5f5c..5bed85ee9 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 393733bb8..aebce3467 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 908d2b7f5..7ffc4f650 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 0e7255cb4..14348c8b5 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1a595dbe2..b29e332da 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index a8e63ab16..30b52853c 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,44 +79,44 @@

- - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - + -JSObject->CustomStringConvertible - - +JSObject->Equatable + + - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 280c5f5bc..a78baab92 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2823daaac..c3286c751 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index c01be53f9..a26629bf4 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,15 +77,18 @@

- - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue @@ -104,42 +107,39 @@ - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - + -JSString->LosslessStringConvertible +JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - +LosslessStringConvertible - - + -JSString->ConstructibleFromJSValue +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 96c028e62..de0f2f9c1 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 45e7c6b53..1e6aa52e3 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6a6b9cfb3..45b7b3261 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 80043875f..f8cb2dd27 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -40,7 +40,7 @@

public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

+FIXME: BigInt-based TypedArrays are currently not supported.

@@ -73,7 +73,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -88,7 +88,7 @@ - + JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index d7ab9a4d0..1cae423e6 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -72,80 +72,80 @@

ExpressibleByNilLiteral
- + JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 80866eb27..003e36a61 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c5f876236..bc4bf2c30 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 800c6ac9e..4ff08b4e9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c6d952ece..a22c54ca2 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 79e3c3abe..2f25dea8b 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 40fe71b9c..4d89659e7 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 41d1020bf..b1099627f 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 3aaf9cc65..cd27c9927 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 3ae44772c..86927db2e 100644 --- a/index.html +++ b/index.html @@ -119,7 +119,7 @@

Classes

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)

+FIXME: BigInt-based TypedArrays are currently not supported.

@@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index d4e2ded80..04d4ca380 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index f73b7541d..e9ee8f852 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 7528728196c109bf416ec1d85e964788110d6ec2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Sun, 13 Dec 2020 09:50:07 +0000 Subject: [PATCH 056/148] deploy: 09a2cd3a6bd05f4c60d9c61638f8c1bb80f8f109 --- ConstructibleFromJSValue/index.html | 2 +- ConvertibleToJSValue/index.html | 38 +++++------ JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 84 ++++++++++++------------ JSBridgedType/index.html | 28 ++++---- JSClosure/index.html | 2 +- JSDate/index.html | 6 +- JSError/index.html | 8 +-- JSFunction/index.html | 10 +-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 48 +++++++------- JSObjectRef/index.html | 2 +- JSPromise/index.html | 30 ++++----- JSString/index.html | 62 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 32 ++++----- JSValue/index.html | 74 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 233 insertions(+), 233 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 314e3e24b..9c16e6fe7 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index d63db9055..0a7478c69 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,18 +65,18 @@ - - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - - -JSPromise->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -95,18 +95,18 @@ - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index a28f0e616..72914ce58 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 8343e367a..4231792eb 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 4d2c68614..d1add7fdf 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 2b0edf287..246768ea7 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSDate - - -JSDate + + +JSError + + +JSError - - -JSDate->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d58e224a0..b1046bb0f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 5bed85ee9..44c8f9809 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index aebce3467..5d481fb17 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 7ffc4f650..13f04924b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -77,7 +77,7 @@

- + JSError->JSBridgedClass @@ -89,7 +89,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -101,7 +101,7 @@ Error - + JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 14348c8b5..dd386e7f0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -75,9 +75,9 @@

- + JSObject - + JSObject @@ -90,9 +90,9 @@ - + JSClosure - + JSClosure @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index b29e332da..71ee9f82a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 30b52853c..6434e36eb 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,44 +79,44 @@

- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a78baab92..fe5358a4b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c3286c751..193f604ad 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -83,33 +83,33 @@

- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSPromise->ConvertibleToJSValue + + +JSPromise->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSPromise->ConstructibleFromJSValue + + +JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index a26629bf4..efd77586b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSString->ConvertibleToJSValue +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index de0f2f9c1..1bc33d194 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 1e6aa52e3..3f33be9a0 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 45b7b3261..833713f65 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f8cb2dd27..6444e85ff 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 1cae423e6..b9e0dd597 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,51 +65,51 @@

- + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -120,32 +120,32 @@ Equatable - + JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 003e36a61..b64402166 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index bc4bf2c30..ba2d64899 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 4ff08b4e9..0578871c3 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index a22c54ca2..37be92677 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 2f25dea8b..4e499cd2c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4d89659e7..c7ed68d26 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index b1099627f..fe750931f 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index cd27c9927..503f075c6 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 86927db2e..bd4e1ce4d 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 04d4ca380..bc9fb0647 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index e9ee8f852..7ae5e74e8 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 10bc706d134f0079af08903747fb907ec20c3203 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 3 Jan 2021 09:21:56 +0000 Subject: [PATCH 057/148] deploy: 7d7be117e2a326df4e1772f145edade4e32d0da7 --- ConstructibleFromJSValue/index.html | 40 +++++------ ConvertibleToJSValue/index.html | 40 +++++------ JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 56 +++++++-------- JSBridgedType/index.html | 48 ++++++------- JSClosure/index.html | 2 +- JSDate/index.html | 34 +++++----- JSError/index.html | 38 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 40 +++++------ JSObjectRef/index.html | 2 +- JSPromise/index.html | 6 +- JSString/index.html | 54 +++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 86 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 32 files changed, 249 insertions(+), 249 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 9c16e6fe7..1b0ddaf66 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,18 +65,18 @@ - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -90,23 +90,23 @@ - + TypedArrayElement->ConstructibleFromJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConstructibleFromJSValue + + +JSPromise->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 0a7478c69..20ac26544 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -75,38 +75,38 @@
- + TypedArrayElement->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - - -JSString->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 72914ce58..cddfc789d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 4231792eb..b5ce441c9 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d1add7fdf..a4109dd5b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 246768ea7..52a4df4a6 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,32 +66,32 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -110,20 +110,20 @@ - - -JSTypedArray - - -JSTypedArray + + +JSError + + +JSError - - -JSTypedArray->JSBridgedClass - - + + +JSError->JSBridgedClass + + @@ -135,7 +135,7 @@ - + JSDate->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b1046bb0f..5a6a9dd09 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,44 +66,44 @@

- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - - -JSBridgedType->CustomStringConvertible - - + + +JSBridgedType->JSValueCompatible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 44c8f9809..7fa38da73 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 5d481fb17..5dfd3f4c4 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 13f04924b..635df3ea5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,15 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -89,20 +86,23 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index dd386e7f0..c8e876497 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -84,7 +84,7 @@

- + JSFunction->JSObject @@ -99,7 +99,7 @@ - + JSClosure->JSFunction @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 71ee9f82a..2002446a8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 6434e36eb..0b43f36b4 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,43 +80,43 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -273,7 +273,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index fe5358a4b..d2c0ad9b6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 193f604ad..dde55cd4f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -93,7 +93,7 @@

- + JSPromise->ConstructibleFromJSValue @@ -108,7 +108,7 @@ - + JSPromise->ConvertibleToJSValue @@ -213,7 +213,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index efd77586b..c4d86c586 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,33 +77,30 @@

- - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue @@ -114,7 +111,7 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible @@ -126,20 +123,23 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1bc33d194..2ad1ad6f1 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 3f33be9a0..38b3a746e 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 833713f65..a0efa5ba6 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6444e85ff..9a0dc7901 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index b9e0dd597..317b62109 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -450,7 +450,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index b64402166..1760af2c0 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ba2d64899..fc9b8f637 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0578871c3..183202b31 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 37be92677..34f14e40a 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4e499cd2c..3e2e948cf 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c7ed68d26..fcadf15bf 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index fe750931f..d08f8e1b1 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 503f075c6..971123fd8 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index bd4e1ce4d..a3ec6e4b8 100644 --- a/index.html +++ b/index.html @@ -369,7 +369,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index bc9fb0647..95ba5d15c 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 7ae5e74e8..e4bbbbb44 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 48d035605bf515a06ebbcce74fc92fa2d2a0afcd Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 4 Jan 2021 00:56:27 +0000 Subject: [PATCH 058/148] deploy: 55a4bfa43d93262fa2f9dd671b1070f1f4ef1859 --- ConstructibleFromJSValue/index.html | 52 ++++---- ConvertibleToJSValue/index.html | 52 ++++---- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 68 +++++----- JSBridgedType/index.html | 24 ++-- JSClosure/index.html | 88 ++++++------- JSClosureProtocol/index.html | 161 +++++++++++++++++++++++ JSDate/index.html | 32 ++--- JSError/index.html | 46 +++---- JSFunction/index.html | 53 ++------ JSFunctionRef/index.html | 2 +- JSObject/index.html | 98 ++++++++++---- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 156 ++++++++++++++++++++++ JSPromise/index.html | 13 +- JSString/index.html | 78 +++++------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 94 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 48 ++++--- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 736 insertions(+), 397 deletions(-) create mode 100644 JSClosureProtocol/index.html create mode 100644 JSOneshotClosure/index.html diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 1b0ddaf66..2b202221a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,48 +65,48 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - + -TypedArrayElement->ConstructibleFromJSValue +JSPromise->ConstructibleFromJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - - -JSPromise->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 20ac26544..05fb7d9b5 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -TypedArrayElement - - -TypedArrayElement + + +JSPromise + + +JSPromise - - -TypedArrayElement->ConvertibleToJSValue + + +JSPromise->ConvertibleToJSValue - - -JSPromise - - -JSPromise + + +JSString + + +JSString - + -JSPromise->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index cddfc789d..cf8ad9a56 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b5ce441c9..403fd54c7 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a4109dd5b..eeb632aa3 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 52a4df4a6..f2d7eaef3 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,19 +66,19 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + @@ -90,53 +90,53 @@ - + JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSError - - -JSError + + +JSArray + + +JSArray - - -JSError->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 5a6a9dd09..5f2dbee8b 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -79,31 +79,31 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 7fa38da73..ac7923c5b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSClosure

-
public class JSClosure: JSFunction
+
public class JSClosure: JSObject, JSClosureProtocol

JSClosure represents a JavaScript function the body of which is written in Swift. This type can be passed as a callback handler to JavaScript functions. @@ -83,20 +83,35 @@

- + -JSFunction - - -JSFunction +JSObject + + +JSObject - + -JSClosure->JSFunction - - +JSClosure->JSObject + + + + + +JSClosureProtocol + + +JSClosureProtocol + + + + + +JSClosure->JSClosureProtocol + + @@ -106,9 +121,16 @@

Superclass

-
JSFunction
-

JSFunction represents a function in JavaScript and supports new object instantiation. -This type can be callable as a function using callAsFunction.

+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+

Conforms To

+
+
JSClosureProtocol
+

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

@@ -119,40 +141,13 @@

Initializers

init(_:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue)
-
-

Instantiate a new JSClosure with given function body.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
body@escaping ([JSValue]) -> JSValue

The body of this function.

-
+
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure") @_disfavoredOverload public convenience init(_ body: @escaping ([JSValue]) -> ())

init(_:​)

-
convenience public init(_ body: @escaping ([JSValue]) -> ())
-
-

A convenience initializer which assumes that the given body function returns JSValue.undefined

- -
+
public init(_ body: @escaping ([JSValue]) -> JSValue)

@@ -163,11 +158,6 @@

release()

public func release()
-
-

Release this function resource. -After calling release, calling this function from JavaScript will fail.

- -
@@ -178,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html new file mode 100644 index 000000000..19bd04489 --- /dev/null +++ b/JSClosureProtocol/index.html @@ -0,0 +1,161 @@ + + + + + + JavaScriptKit - JSClosureProtocol + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Protocol + JSClosure​Protocol +

+ +
public protocol JSClosureProtocol: JSValueCompatible
+
+

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+ +
+
+ +
+ + + + + + +%3 + + + +JSClosureProtocol + + +JSClosureProtocol + + + + + +JSValueCompatible + +JSValueCompatible + + + +JSClosureProtocol->JSValueCompatible + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSClosureProtocol + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + + + + + + +
+

Conforms To

+
+
JSValueCompatible
+
+

Types Conforming to JSClosure​Protocol

+
+
JSOneshotClosure
+

JSOneshotClosure is a JavaScript function that can be called only once.

+
+
JSClosure
+

JSClosure represents a JavaScript function the body of which is written in Swift. +This type can be passed as a callback handler to JavaScript functions. +Note that the lifetime of JSClosure should be managed by users manually +due to GC boundary between Swift and JavaScript. +For further discussion, see also swiftwasm/JavaScriptKit #33

+
+
+
+ + + +
+

Requirements

+ +
+

+ release() +

+
func release()
+
+

Release this function resource. +After calling release, calling this function from JavaScript will fail.

+ +
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSDate/index.html b/JSDate/index.html index 5dfd3f4c4..5245e62d0 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 635df3ea5..f857b141e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error - -Error - - - -JSError->Error - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass + + + + + +Error + +Error + + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c8e876497..84bb16c98 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -26,7 +26,7 @@ @@ -60,49 +60,34 @@

- - + + %3 - + JSFunction - -JSFunction + +JSFunction - + JSObject - - -JSObject + + +JSObject JSFunction->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSFunction - - + + @@ -118,16 +103,6 @@

Superclass

runtime bridge library for a member with the specified name in this object.

-

Subclasses

-
-
JSClosure
-

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions. -Note that the lifetime of JSClosure should be managed by users manually -due to GC boundary between Swift and JavaScript. -For further discussion, see also swiftwasm/JavaScriptKit #33

-
-

Properties

@@ -291,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 2002446a8..d95428cc1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 0b43f36b4..25c677e80 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -65,58 +65,88 @@

- - + + %3 - + JSObject - -JSObject + +JSObject - + +Equatable + +Equatable + + + +JSObject->Equatable + + + + + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - + + - - -Equatable - -Equatable + + +JSOneshotClosure + + +JSOneshotClosure + - - -JSObject->Equatable - - + + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + @@ -126,7 +156,17 @@

Subclasses

-
JSFunction
+
JSOneshotClosure
+

JSOneshotClosure is a JavaScript function that can be called only once.

+
+
JSClosure
+

JSClosure represents a JavaScript function the body of which is written in Swift. +This type can be passed as a callback handler to JavaScript functions. +Note that the lifetime of JSClosure should be managed by users manually +due to GC boundary between Swift and JavaScript. +For further discussion, see also swiftwasm/JavaScriptKit #33

+
+
JSFunction

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

@@ -273,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index d2c0ad9b6..db6de836f 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html new file mode 100644 index 000000000..041ee1184 --- /dev/null +++ b/JSOneshotClosure/index.html @@ -0,0 +1,156 @@ + + + + + + JavaScriptKit - JSOneshotClosure + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Class + JSOneshot​Closure +

+ +
public class JSOneshotClosure: JSObject, JSClosureProtocol
+
+

JSOneshotClosure is a JavaScript function that can be called only once.

+ +
+
+ +
+ + + + + + +%3 + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSClosureProtocol + + +JSClosureProtocol + + + + + +JSOneshotClosure->JSClosureProtocol + + + + + +JSObject + + +JSObject + + + + + +JSOneshotClosure->JSObject + + + + + + + + +
+

Superclass

+
+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+

Conforms To

+
+
JSClosureProtocol
+

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
public init(_ body: @escaping ([JSValue]) -> JSValue)
+
+
+
+

Methods

+ +
+

+ release() +

+
public func release()
+
+

Release this function resource. +After calling release, calling this function from JavaScript will fail.

+ +
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.5. +

+
+ + diff --git a/JSPromise/index.html b/JSPromise/index.html index dde55cd4f..734e29206 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -52,13 +52,6 @@

It's impossible to unify success and failure types from both callbacks in a single returned promise without type erasure. You should chain then and catch in those cases to avoid type erasure.

-

IMPORTANT: instances of this class must have the same lifetime as the actual Promise object in -the JavaScript environment, because callback handlers will be deallocated when JSPromise.deinit is -executed.

- -

If the actual Promise object in JavaScript environment lives longer than this JSPromise, it may -attempt to call a deallocated JSClosure.

-
@@ -93,7 +86,7 @@ - + JSPromise->ConstructibleFromJSValue @@ -108,7 +101,7 @@ - + JSPromise->ConvertibleToJSValue @@ -213,7 +206,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index c4d86c586..d37ebb0f8 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 2ad1ad6f1..578ed6dd4 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 38b3a746e..c41427d42 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a0efa5ba6..bdcf0f38b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 9a0dc7901..931a28f56 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 317b62109..cc2d3d6da 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -26,7 +26,7 @@ @@ -65,87 +65,87 @@

- + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -408,6 +408,12 @@

+
+

+ function(_:​) +

+
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.") public static func function(_ closure: JSClosure) -> JSValue
+

is​Instance​Of(_:​) @@ -450,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 1760af2c0..ee328e361 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index fc9b8f637..c1bf300ca 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 183202b31..9921da1f2 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 34f14e40a..cd0a8f234 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 3e2e948cf..2e95694eb 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index fcadf15bf..84f045e13 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index d08f8e1b1..fff867665 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 971123fd8..4aeb4477c 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index a3ec6e4b8..815f87ea1 100644 --- a/index.html +++ b/index.html @@ -123,23 +123,12 @@

Classes

- - JSFunction - -
-
-

JSFunction represents a function in JavaScript and supports new object instantiation. -This type can be callable as a function using callAsFunction.

- -
-
- - JSThrowing​Function + + JSOneshot​Closure
-

A JSFunction wrapper that enables throwing function calls. -Exceptions produced by JavaScript functions will be thrown as JSValue.

+

JSOneshotClosure is a JavaScript function that can be called only once.

@@ -154,6 +143,16 @@

Classes

due to GC boundary between Swift and JavaScript. For further discussion, see also swiftwasm/JavaScriptKit #33

+ +
+ + JSFunction + +
+
+

JSFunction represents a function in JavaScript and supports new object instantiation. +This type can be callable as a function using callAsFunction.

+
@@ -175,6 +174,16 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ + JSThrowing​Function + +
+
+

A JSFunction wrapper that enables throwing function calls. +Exceptions produced by JavaScript functions will be thrown as JSValue.

+
@@ -244,6 +253,15 @@

Protocols

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
+
+ + JSClosure​Protocol + +
+
+

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+
@@ -369,7 +387,7 @@

Functions

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 95ba5d15c..9ad89fc3f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index e4bbbbb44..db7158da3 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From a30953ab780e2e0e34b16f76498cc9198054f915 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 7 Jan 2021 13:38:33 +0000 Subject: [PATCH 059/148] deploy: d583439ab68788b937be05f1fbd324991c82cecc --- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 48 +++++++------- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 +++++++++++------------ JSBridgedType/index.html | 46 ++++++------- JSClosure/index.html | 34 +++++----- JSClosureProtocol/index.html | 50 +++++++-------- JSDate/index.html | 2 +- JSError/index.html | 36 +++++------ JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 76 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 26 ++++---- JSString/index.html | 54 ++++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 82 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +--------------- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 313 insertions(+), 365 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 2b202221a..d1d86e1bd 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -90,7 +90,7 @@ - + JSPromise->ConstructibleFromJSValue @@ -105,7 +105,7 @@ - + JSString->ConstructibleFromJSValue @@ -179,7 +179,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 05fb7d9b5..b1a4f5be0 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,48 +65,48 @@
- - -JSPromise - - -JSPromise + + +TypedArrayElement + + +TypedArrayElement - + -JSPromise->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -JSString - - -JSString + + +JSPromise + + +JSPromise - + -JSString->ConvertibleToJSValue +JSPromise->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index cf8ad9a56..7386259ed 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 403fd54c7..6311f05c0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index eeb632aa3..754e02996 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f2d7eaef3..4f04256d8 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,77 +66,77 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - + -JSDate->JSBridgedClass +JSTypedArray->JSBridgedClass - - -JSArray - - -JSArray + + +JSDate + + +JSDate - + -JSArray->JSBridgedClass - - +JSDate->JSBridgedClass + + - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -212,7 +212,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 5f2dbee8b..6e8943603 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,44 +66,44 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index ac7923c5b..021ded562 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -83,33 +83,33 @@

- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 19bd04489..c65af855f 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,46 +66,46 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSClosureProtocol - - + + +JSOneshotClosure->JSClosureProtocol + + @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 5245e62d0..3596d0c4c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index f857b141e..ead557fda 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,30 +67,30 @@

- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -101,7 +101,7 @@ Error - + JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 84bb16c98..38346b847 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index d95428cc1..d81a78bf3 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 25c677e80..845e8b1a4 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + Equatable @@ -91,60 +103,48 @@ - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSObject + + +JSOneshotClosure->JSObject @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index db6de836f..b7d1062ed 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 041ee1184..e30697209 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -75,7 +75,7 @@

- + JSOneshotClosure->JSClosureProtocol @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSObject @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 734e29206..3e8662710 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -76,33 +76,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSPromise->ConstructibleFromJSValue +JSPromise->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSPromise->ConvertibleToJSValue +JSPromise->ConstructibleFromJSValue @@ -206,7 +206,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index d37ebb0f8..6ee06f6ef 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -84,62 +84,62 @@

LosslessStringConvertible
- + JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - + -JSString->ExpressibleByStringLiteral +JSString->Equatable - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 578ed6dd4..499ec750b 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c41427d42..fef5fdbc8 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index bdcf0f38b..66c86a3ef 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 931a28f56..b6cf4c671 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index cc2d3d6da..c64daf0fd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueCompatible @@ -456,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index ee328e361..e39f627bb 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c1bf300ca..0c2e3bc62 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9921da1f2..447768598 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index cd0a8f234..4fbfb4e89 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 2e95694eb..d31b1006f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 84f045e13..37aa6e9e9 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,59 +45,7 @@

- - - - - - -%3 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - - +
@@ -133,7 +81,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index fff867665..10baca27f 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 4aeb4477c..b0be01517 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 815f87ea1..6f13e1839 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 9ad89fc3f..5dd30e057 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index db7158da3..30978fbd8 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From f606350301fef38bba302c1bdc1bba34d30c33a9 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 10 Jan 2021 23:08:55 +0000 Subject: [PATCH 060/148] deploy: b9984f83e3c994ccfcda657dc9cd221fc79503a9 --- ConstructibleFromJSValue/index.html | 61 ++++------- ConvertibleToJSValue/index.html | 63 ++++------- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 127 +++++++++++++---------- JSBridgedType/index.html | 42 ++++---- JSClosure/index.html | 34 +++--- JSClosureProtocol/index.html | 44 ++++---- JSDate/index.html | 32 +++--- JSError/index.html | 38 +++---- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 78 +++++++------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 +++--- JSPromise/index.html | 113 +++++++++++++------- JSString/index.html | 92 +--------------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++--- JSValue/index.html | 80 +++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 56 +++++++++- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 476 insertions(+), 494 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index d1d86e1bd..303163660 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,17 +51,17 @@ - - + + %3 - + ConstructibleFromJSValue - -ConstructibleFromJSValue + +ConstructibleFromJSValue @@ -69,46 +69,31 @@ TypedArrayElement - -TypedArrayElement + +TypedArrayElement - -TypedArrayElement->ConstructibleFromJSValue - - - - - -JSPromise - - -JSPromise - - - - -JSPromise->ConstructibleFromJSValue - - +TypedArrayElement->ConstructibleFromJSValue + + - + JSString - - -JSString + + +JSString JSString->ConstructibleFromJSValue - - + + @@ -118,15 +103,7 @@

Types Conforming to Constructible​From​JSValue

-
JSPromise
-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

-
-
TypedArrayElement
+
TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

JSString
@@ -179,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b1a4f5be0..29585df4b 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,17 +51,17 @@ - - + + %3 - + ConvertibleToJSValue - -ConvertibleToJSValue + +ConvertibleToJSValue @@ -69,46 +69,31 @@ TypedArrayElement - -TypedArrayElement + +TypedArrayElement - -TypedArrayElement->ConvertibleToJSValue - - - - - -JSPromise - - -JSPromise - - - - -JSPromise->ConvertibleToJSValue - - +TypedArrayElement->ConvertibleToJSValue + + - + JSString - - -JSString + + +JSString - + JSString->ConvertibleToJSValue - - + + @@ -118,15 +103,7 @@

Types Conforming to Convertible​ToJSValue

-
JSPromise
-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

-
-
TypedArrayElement
+
TypedArrayElement

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

JSString
@@ -156,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 7386259ed..7145b73ba 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -76,7 +76,7 @@

- + JSArray->JSBridgedClass @@ -88,7 +88,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6311f05c0..4afed3fcb 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 754e02996..cdf397e11 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4f04256d8..6f1980b26 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,94 +51,109 @@

- - + + %3 - + JSBridgedClass - -JSBridgedClass + +JSBridgedClass - + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSDate + + +JSDate - + -JSError->JSBridgedClass - - +JSDate->JSBridgedClass + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - + -JSTypedArray->JSBridgedClass - - +JSError->JSBridgedClass + + - - -JSDate - - -JSDate + + +JSArray + + +JSArray - + -JSDate->JSBridgedClass - - +JSArray->JSBridgedClass + + - + -JSArray - - -JSArray +JSTypedArray + + +JSTypedArray - - -JSArray->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSBridgedClass + + @@ -173,6 +188,14 @@

Types Conforming to JSBridged​Class

class that exposes its properties in a type-safe way.

+
JSPromise
+

A wrapper around the JavaScript Promise class +that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both +Success and Failure types, which improves compatibility with other statically-typed APIs such +as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. +JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown +is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+
JSTypedArray

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: BigInt-based TypedArrays are currently not supported.

@@ -212,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6e8943603..64ab67d7c 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,44 +66,44 @@

- - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - + -JSBridgedType->JSValueCompatible - - +JSBridgedType->CustomStringConvertible + + - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 021ded562..e5b0cff58 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -83,33 +83,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c65af855f..3c39840c3 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,31 +66,16 @@

- + JSValueCompatible - -JSValueCompatible - - - -JSClosureProtocol->JSValueCompatible - - - - - -JSClosure - -JSClosure - +JSValueCompatible - - + -JSClosure->JSClosureProtocol - - +JSClosureProtocol->JSValueCompatible + + @@ -107,6 +92,21 @@ + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 3596d0c4c..853cef01a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index ead557fda..efcb9a64c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,18 +67,15 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -89,20 +86,23 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 38346b847..b13f1ae97 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index d81a78bf3..7ac5c6a71 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 845e8b1a4..768972fba 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,74 +79,74 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + - + JSClosure - - -JSClosure + + +JSClosure JSClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index b7d1062ed..fe70a2b2d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index e30697209..7d7f5a653 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -65,33 +65,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 3e8662710..c98ece5de 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,7 @@

JSPromise

-
public final class JSPromise<Success, Failure>: ConvertibleToJSValue, ConstructibleFromJSValue
+
public final class JSPromise: JSBridgedClass

A wrapper around the JavaScript Promise class that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both @@ -76,35 +76,20 @@

- + -ConvertibleToJSValue - - -ConvertibleToJSValue +JSBridgedClass + + +JSBridgedClass - - -JSPromise->ConvertibleToJSValue - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - + -JSPromise->ConstructibleFromJSValue - - +JSPromise->JSBridgedClass + + @@ -114,26 +99,44 @@

Conforms To

-
ConstructibleFromJSValue
-

Types conforming to this protocol can be constructed from JSValue.

-
-
ConvertibleToJSValue
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
JSBridgedClass
+

Conform to this protocol when your Swift class wraps a JavaScript class.

Initializers

-
+
+

+ init(unsafely​Wrapping:​) +

+
public init(unsafelyWrapping object: JSObject)
+
+

This private initializer assumes that the passed object is a JavaScript Promise

+ +
+
+

init?(_:​)

-
public init?(_ jsObject: JSObject)
+
public convenience init?(_ jsObject: JSObject)

Creates a new JSPromise instance from a given JavaScript Promise object. If jsObject is not an instance of JavaScript Promise, this initializer will return nil.

+
+
+
+

+ init(resolver:​) +

+
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ())
+
+

Creates a new JSPromise instance from a given resolver closure. resolver takes +two closure that your code should call to either resolve or reject this JSPromise instance.

+
@@ -149,6 +152,12 @@

The underlying JavaScript Promise object.

+ +
+

+ constructor +

+
var constructor: JSFunction

@@ -176,21 +185,53 @@

+
+

+ resolve(_:​) +

+
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise
+
+
+

+ reject(_:​) +

+
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise
+

then(success:​)

-
public func then(success: @escaping () -> ())
+
@discardableResult public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise

Schedules the success closure to be invoked on sucessful completion of self.

+
+
+
+

+ then(success:​failure:​) +

+
@discardableResult public func then(success: @escaping (JSValue) -> ConvertibleToJSValue, failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise
+
+

Schedules the success closure to be invoked on sucessful completion of self.

+ +
+
+
+

+ `catch`(failure:​) +

+
@discardableResult public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise
+
+

Schedules the failure closure to be invoked on rejected completion of self.

+

finally(success​OrFailure:​)

-
public func finally(successOrFailure: @escaping () -> ()) -> Self
+
@discardableResult public func finally(successOrFailure: @escaping () -> ()) -> JSPromise

Schedules the failure closure to be invoked on either successful or rejected completion of self.

@@ -206,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 6ee06f6ef..3189a36c4 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -57,95 +57,7 @@

- - - - - - -%3 - - - -JSString - - -JSString - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - - -Equatable - -Equatable - - - -JSString->Equatable - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSString->ConvertibleToJSValue - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -JSString->ConstructibleFromJSValue - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - - - +
@@ -256,7 +168,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 499ec750b..92b9a35d6 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index fef5fdbc8..456c8120c 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 66c86a3ef..42abfe317 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b6cf4c671..5061bae69 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index c64daf0fd..db2efdb11 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - + -JSValue->ExpressibleByFloatLiteral +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByFloatLiteral @@ -456,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index e39f627bb..abb5c7896 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 0c2e3bc62..f30cbf9e4 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 447768598..1a844c969 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 4fbfb4e89..927d082dd 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d31b1006f..8b918c670 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 37aa6e9e9..22fccadd8 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -45,7 +45,59 @@

- + + + + + + +%3 + + + +TypedArrayElement + + +TypedArrayElement + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +TypedArrayElement->ConstructibleFromJSValue + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +TypedArrayElement->ConvertibleToJSValue + + + + + +
@@ -81,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 10baca27f..66dc89d0e 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index b0be01517..8c0e88755 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 6f13e1839..698eb51c1 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 5dd30e057..3dd25faa7 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 30978fbd8..43e69aff9 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 8b764e042db5ef44b2dfb3b2dc3008d7ea656dba Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 21 Jan 2021 17:09:20 +0000 Subject: [PATCH 061/148] deploy: aa42da6a738649aa97e2247b24938b085aadcbba --- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 30 ++++---- JSArray/index.html | 2 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 98 ++++++++++++------------ JSBridgedType/index.html | 30 ++++---- JSClosure/index.html | 34 ++++---- JSClosureProtocol/index.html | 50 ++++++------ JSDate/index.html | 2 +- JSError/index.html | 8 +- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 62 +++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 ++++---- JSPromise/index.html | 2 +- JSString/index.html | 92 +++++++++++++++++++++- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 42 +++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 324 insertions(+), 236 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 303163660..157abcf06 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,7 +75,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + JSString->ConstructibleFromJSValue @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 29585df4b..ed239e5a9 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 7145b73ba..7141a25c4 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 4afed3fcb..c57b479a0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index cdf397e11..3fa15d79d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 6f1980b26..e22f2a165 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,94 +66,94 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass +JSTypedArray->JSBridgedClass - - -JSArray - - -JSArray + + +JSDate + + +JSDate - - -JSArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - - -JSTypedArray - - -JSTypedArray + + +JSError + + +JSError - + -JSTypedArray->JSBridgedClass - - +JSError->JSBridgedClass + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + @@ -235,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 64ab67d7c..2b9e0a73c 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -85,25 +85,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e5b0cff58..42c8a24a8 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -83,33 +83,33 @@

- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 3c39840c3..c1fe9671a 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,44 +66,44 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 853cef01a..21256f4a9 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index efcb9a64c..8c23e90fb 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -74,7 +74,7 @@

Error
- + JSError->Error @@ -86,7 +86,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b13f1ae97..b57d76333 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7ac5c6a71..add62f91f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 768972fba..d987fe06d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + Equatable @@ -86,38 +98,11 @@ Equatable - + JSObject->Equatable - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - JSFunction @@ -128,7 +113,7 @@ - + JSFunction->JSObject @@ -143,11 +128,26 @@ - + JSOneshotClosure->JSObject + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + + @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index fe70a2b2d..30c3c6237 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 7d7f5a653..9e22c1047 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -65,33 +65,33 @@

- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c98ece5de..56f6cf4af 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 3189a36c4..843f3859e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -57,7 +57,95 @@

- + + + + + + +%3 + + + +JSString + + +JSString + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +JSString->ConstructibleFromJSValue + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSString->ConvertibleToJSValue + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + + + +Equatable + +Equatable + + + +JSString->Equatable + + + + + +
@@ -168,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 92b9a35d6..c8935c289 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 456c8120c..d1c911cfc 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 42abfe317..05c82ca00 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5061bae69..b115cc53c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -76,7 +76,7 @@

- + JSTypedArray->JSBridgedClass @@ -88,7 +88,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index db2efdb11..d69202729 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -77,15 +77,15 @@

- + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible @@ -96,7 +96,7 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral @@ -108,32 +108,32 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -144,7 +144,7 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral @@ -456,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index abb5c7896..9d28439a1 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index f30cbf9e4..3e0861c24 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 1a844c969..65c0ffe9d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 927d082dd..3beeedb9c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 8b918c670..32009b2dc 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 22fccadd8..3b77e4e5c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 66dc89d0e..875237d28 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 8c0e88755..473ebf323 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 698eb51c1..0a4687e98 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 3dd25faa7..ec54028e0 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 43e69aff9..e7637c681 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 8d559ba8aaa277bbe30720dff5228f1e2dad3cc0 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 21 Jan 2021 17:19:16 +0000 Subject: [PATCH 062/148] deploy: ebd9ca04215397f0e3cb72d6e96406a980a424e5 --- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 6 +- JSArray/index.html | 34 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 80 ++++++++++---------- JSBridgedType/index.html | 24 +++--- JSClosure/index.html | 2 +- JSClosureProtocol/index.html | 30 ++++---- JSDate/index.html | 32 ++++---- JSError/index.html | 6 +- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 94 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 2 +- JSPromise/index.html | 2 +- JSString/index.html | 60 +++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 32 ++++---- JSValue/index.html | 84 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 26 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 278 insertions(+), 278 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 157abcf06..831ad2956 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -75,7 +75,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + JSString->ConstructibleFromJSValue @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ed239e5a9..1fc14b2c2 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -75,7 +75,7 @@
- + JSString->ConvertibleToJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 7141a25c4..898c307ff 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

+ + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index c57b479a0..053391cea 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3fa15d79d..71351f5ba 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e22f2a165..b1e8e2473 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,47 +66,47 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass @@ -120,40 +120,40 @@ - + JSDate->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSPromise - - -JSPromise + + +JSError + + +JSError - - -JSPromise->JSBridgedClass - - + + +JSError->JSBridgedClass + + @@ -235,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 2b9e0a73c..12449267f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + @@ -91,19 +91,19 @@ - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 42c8a24a8..69866e3f0 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c1fe9671a..a93684f8f 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -77,33 +77,33 @@

- + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 21256f4a9..9ef8a4ff2 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 8c23e90fb..316305c6b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -74,7 +74,7 @@

Error
- + JSError->Error @@ -86,7 +86,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b57d76333..2a47f7782 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index add62f91f..4d00804bb 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index d987fe06d..4de47d1a9 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,74 +79,74 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -JSFunction - - -JSFunction + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSClosure + + +JSClosure - + -JSFunction->JSObject - - +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - - -JSClosure - - -JSClosure + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 30c3c6237..a60bea172 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 9e22c1047..30defe163 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 56f6cf4af..c9a1e7450 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 843f3859e..5b7e4ae4d 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,15 +77,18 @@

- - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue @@ -99,47 +102,44 @@ - + JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c8935c289..9551beee8 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index d1c911cfc..141ab5a14 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 05c82ca00..b0c6a09c1 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b115cc53c..bd17255ec 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index d69202729..e307fa011 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable @@ -456,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 9d28439a1..c24df4b93 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3e0861c24..19daa42dd 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 65c0ffe9d..4bdd6314e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3beeedb9c..562231152 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 32009b2dc..801e6a737 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 3b77e4e5c..4aaaa2aa6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 875237d28..fcf066bcd 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 473ebf323..563e16ebb 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 0a4687e98..7d490d3a1 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index ec54028e0..b1e5ba1d1 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index e7637c681..cfc428807 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From d034225a71654ff56b086cbd933137d69a194744 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Thu, 11 Mar 2021 02:09:22 +0000 Subject: [PATCH 063/148] deploy: 21a4d66a62c2977607112ec6eb35062186747aa6 --- ConstructibleFromJSValue/index.html | 30 ++++----- ConvertibleToJSValue/index.html | 34 +++++----- JSArray/index.html | 32 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 78 +++++++++++----------- JSBridgedType/index.html | 24 +++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 50 +++++++------- JSDate/index.html | 36 +++++----- JSError/index.html | 46 ++++++------- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 66 +++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 +++++----- JSPromise/index.html | 2 +- JSString/index.html | 50 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++++----- JSValue/index.html | 84 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 4 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 325 insertions(+), 325 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 831ad2956..90b547cbe 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,33 +65,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 1fc14b2c2..3747eec28 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -65,33 +65,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 898c307ff..12d61284b 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 053391cea..7c5c5beac 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 71351f5ba..07ef4b5ee 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index b1e8e2473..40bac2f5f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -80,78 +80,78 @@

- + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass @@ -175,7 +175,7 @@

Types Conforming to JSBridged​Class

that exposes its properties in a type-safe and Swifty way.

JSDate
-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -235,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 12449267f..704e7339f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,16 +67,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + @@ -91,19 +91,19 @@ - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 69866e3f0..bf35dff28 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -93,7 +93,7 @@

- + JSClosure->JSClosureProtocol @@ -108,7 +108,7 @@ - + JSClosure->JSObject @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index a93684f8f..e8a476eaf 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,44 +66,44 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 9ef8a4ff2..297b377b3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -39,7 +39,7 @@

public final class JSDate: JSBridgedClass
-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -71,30 +71,30 @@

- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index 316305c6b..bbecffdfb 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 2a47f7782..6cd99fb05 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4d00804bb..28216c477 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index 4de47d1a9..b22e198bd 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,44 +79,44 @@

- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible + + + + + +Equatable + +Equatable + + + +JSObject->Equatable - - -JSClosure - - -JSClosure + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + @@ -133,18 +133,18 @@ - + -JSFunction - +JSClosure + -JSFunction +JSClosure - + -JSFunction->JSObject +JSClosure->JSObject @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a60bea172..1019bc526 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 30defe163..e0895d505 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -65,33 +65,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c9a1e7450..c1f398854 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 5b7e4ae4d..b467a4401 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,18 +77,15 @@

- - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - +ExpressibleByStringLiteral - - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -102,20 +99,20 @@
- + JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -126,20 +123,23 @@ Equatable - + JSString->Equatable - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConvertibleToJSValue @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 9551beee8..b95e11955 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 141ab5a14..1d6be4a57 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b0c6a09c1..c692a5b06 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index bd17255ec..78af877a2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index e307fa011..096959e7e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -65,87 +65,87 @@

- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByIntegerLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -456,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index c24df4b93..1993d890b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 19daa42dd..cb6e3b418 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 4bdd6314e..ca09194c7 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 562231152..a1f4c7242 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 801e6a737..eefc35a0c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4aaaa2aa6..b2925b8d6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index fcf066bcd..9fcae4b9a 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 563e16ebb..5a14c01a3 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 7d490d3a1..417919a51 100644 --- a/index.html +++ b/index.html @@ -59,7 +59,7 @@

Classes

-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index b1e5ba1d1..155164a04 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index cfc428807..9614146a7 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 8185fea616443daef25eeafd9082041848bd7d07 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 17 Mar 2021 14:18:41 +0000 Subject: [PATCH 064/148] deploy: 3d67e053baa630ac69afad214b6d9ff1c574f70f --- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 2 +- JSArray/index.html | 32 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 84 ++++++++--------- JSBridgedType/index.html | 22 ++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 44 ++++----- JSDate/index.html | 34 +++---- JSError/index.html | 48 +++++----- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 32 +++---- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 2 +- JSString/index.html | 78 ++++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSValue/index.html | 110 +---------------------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 248 insertions(+), 354 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 90b547cbe..51059f96e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,33 +65,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 3747eec28..bfd6cba45 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 12d61284b..1c5044306 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 7c5c5beac..e9efc0861 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 07ef4b5ee..a55ae3c90 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 40bac2f5f..bd68c97f3 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -66,62 +66,62 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -135,25 +135,25 @@ - + JSArray->JSBridgedClass - - -JSDate - - -JSDate + + +JSError + + +JSError - + -JSDate->JSBridgedClass - - +JSError->JSBridgedClass + + @@ -235,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 704e7339f..cde6f451f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -66,27 +66,27 @@

- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index bf35dff28..ebea71080 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -93,7 +93,7 @@

- + JSClosure->JSClosureProtocol @@ -108,7 +108,7 @@ - + JSClosure->JSObject @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index e8a476eaf..3ceeff898 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,16 +66,31 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSClosureProtocol + + @@ -87,26 +102,11 @@ - + JSClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSClosureProtocol - - - @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 297b377b3..0047c5484 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -71,30 +71,30 @@

+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index bbecffdfb..b174be0f5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,42 +67,42 @@

- - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - - -JSError->JSBridgedClass + + +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 6cd99fb05..136a52ffd 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 28216c477..f912c1399 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index b22e198bd..ff622c0da 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -80,16 +80,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + @@ -104,19 +104,19 @@ - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -128,7 +128,7 @@ - + JSOneshotClosure->JSObject @@ -143,7 +143,7 @@ - + JSClosure->JSObject @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1019bc526..4a5955bdc 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index e0895d505..1ceeb804f 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -75,7 +75,7 @@

- + JSOneshotClosure->JSObject @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c1f398854..ee3976afb 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index b467a4401..298a5daf4 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -77,69 +77,69 @@

- - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue - - + + - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible - + JSString->LosslessStringConvertible + + + + + +ConvertibleToJSValue + + +ConvertibleToJSValue + + + + + +JSString->ConvertibleToJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSString->Equatable +JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index b95e11955..e76efb6ff 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 1d6be4a57..55cf74af9 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index c692a5b06..de7ec211f 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 78af877a2..2dea55566 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index 096959e7e..ed37659a7 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -45,113 +45,7 @@

- - - - - - -%3 - - - -JSValue - - -JSValue - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSValue->CustomStringConvertible - - - - - -ExpressibleByFloatLiteral - -ExpressibleByFloatLiteral - - - -JSValue->ExpressibleByFloatLiteral - - - - - -ExpressibleByNilLiteral - -ExpressibleByNilLiteral - - - -JSValue->ExpressibleByNilLiteral - - - - - -Equatable - -Equatable - - - -JSValue->Equatable - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSValue->ExpressibleByStringLiteral - - - - - -ExpressibleByIntegerLiteral - -ExpressibleByIntegerLiteral - - - -JSValue->ExpressibleByIntegerLiteral - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSValue->JSValueCompatible - - - - - - +
@@ -456,7 +350,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 1993d890b..42030634d 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index cb6e3b418..baf139773 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ca09194c7..0c499de41 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index a1f4c7242..e99e00951 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index eefc35a0c..f6dc70602 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b2925b8d6..2c56c56db 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -65,33 +65,33 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 9fcae4b9a..3c943632d 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 5a14c01a3..a105cc42d 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index 417919a51..c0d690188 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 155164a04..7176fc729 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 9614146a7..9688d2fe0 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From 4e5be058bd6fd750204e43c89d9c5cdee30bc828 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Wed, 24 Mar 2021 20:09:49 +0000 Subject: [PATCH 065/148] deploy: 62600b5134dd9fd06aeb3be1e00e99d97b7971d4 --- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 2 +- JSArray/index.html | 34 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 2 +- JSBridgedClass/index.html | 68 +++++++------- JSBridgedType/index.html | 8 +- JSClosure/index.html | 34 +++---- JSClosureProtocol/index.html | 42 ++++----- JSDate/index.html | 6 +- JSError/index.html | 26 +++--- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 70 +++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 +++---- JSPromise/index.html | 2 +- JSString/index.html | 30 +++---- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 34 +++---- JSValue/index.html | 110 ++++++++++++++++++++++- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- TypedArrayElement/index.html | 6 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 34 files changed, 341 insertions(+), 235 deletions(-) diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 51059f96e..b0554aa1b 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -65,33 +65,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -156,7 +156,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index bfd6cba45..e74770948 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray/index.html b/JSArray/index.html index 1c5044306..9b1ec0aa9 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -66,30 +66,30 @@

- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -248,7 +248,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e9efc0861..d5d8db97f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a55ae3c90..e54541c14 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -109,7 +109,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index bd68c97f3..c94f38ec9 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -75,68 +75,68 @@

- + JSBridgedClass->JSBridgedType - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - + -JSArray->JSBridgedClass +JSDate->JSBridgedClass @@ -150,7 +150,7 @@ - + JSError->JSBridgedClass @@ -235,7 +235,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index cde6f451f..b605c9f58 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -73,7 +73,7 @@

JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -85,7 +85,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -100,7 +100,7 @@ - + JSBridgedClass->JSBridgedType @@ -145,7 +145,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosure/index.html b/JSClosure/index.html index ebea71080..be2e3fcfe 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -83,33 +83,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -168,7 +168,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 3ceeff898..fb0ca01f7 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -66,46 +66,46 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSDate/index.html b/JSDate/index.html index 0047c5484..7b1959672 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -78,7 +78,7 @@

Comparable
- + JSDate->Comparable @@ -93,7 +93,7 @@ - + JSDate->JSBridgedClass @@ -428,7 +428,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSError/index.html b/JSError/index.html index b174be0f5..0102483d6 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -67,27 +67,27 @@

- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -227,7 +227,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 136a52ffd..0ddc97c9f 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -266,7 +266,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f912c1399..3cbaa77d8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObject/index.html b/JSObject/index.html index ff622c0da..6db0dd245 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -79,6 +79,18 @@

+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + CustomStringConvertible @@ -86,50 +98,23 @@ CustomStringConvertible - + JSObject->CustomStringConvertible - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - - -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - + -JSOneshotClosure->JSObject +JSFunction->JSObject @@ -143,11 +128,26 @@
- + JSClosure->JSObject + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + @@ -313,7 +313,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4a5955bdc..ea1f2dd49 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1ceeb804f..fc5e89001 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -65,33 +65,33 @@

- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -149,7 +149,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSPromise/index.html b/JSPromise/index.html index ee3976afb..0ddc0edea 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSString/index.html b/JSString/index.html index 298a5daf4..c69365994 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -87,20 +87,20 @@

- + JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - + -JSString->LosslessStringConvertible +JSString->Equatable @@ -114,7 +114,7 @@
- + JSString->ConvertibleToJSValue @@ -126,20 +126,20 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible @@ -256,7 +256,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index e76efb6ff..06b5f7c36 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -172,7 +172,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 55cf74af9..a5278a338 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -62,7 +62,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTimer/index.html b/JSTimer/index.html index de7ec211f..4732853a8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -121,7 +121,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 2dea55566..a690d540f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -66,30 +66,30 @@

+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -216,7 +216,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValue/index.html b/JSValue/index.html index ed37659a7..12b7f8c7f 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -45,7 +45,113 @@

- + + + + + + +%3 + + + +JSValue + + +JSValue + + + + + +ExpressibleByIntegerLiteral + +ExpressibleByIntegerLiteral + + + +JSValue->ExpressibleByIntegerLiteral + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSValue->CustomStringConvertible + + + + + +JSValueCompatible + +JSValueCompatible + + + +JSValue->JSValueCompatible + + + + + +ExpressibleByFloatLiteral + +ExpressibleByFloatLiteral + + + +JSValue->ExpressibleByFloatLiteral + + + + + +Equatable + +Equatable + + + +JSValue->Equatable + + + + + +ExpressibleByNilLiteral + +ExpressibleByNilLiteral + + + +JSValue->ExpressibleByNilLiteral + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSValue->ExpressibleByStringLiteral + + + + + +
@@ -350,7 +456,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 42030634d..5a726d5a5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index baf139773..2a4607665 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0c499de41..f62476673 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index e99e00951..d03588f2e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index f6dc70602..cc9b0c05e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -104,7 +104,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 2c56c56db..6c22dadda 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -75,7 +75,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -90,7 +90,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -133,7 +133,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index 3c943632d..fe1990b00 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index a105cc42d..903895fbb 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/index.html b/index.html index c0d690188..d4272564f 100644 --- a/index.html +++ b/index.html @@ -387,7 +387,7 @@

Functions

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 7176fc729..44c3ae70c 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 9688d2fe0..a899eecd3 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -43,7 +43,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.5.

From fd48d19bc04bcd647bee870c2b1f8f28d2140677 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 27 Apr 2021 12:49:51 +0000 Subject: [PATCH 066/148] deploy: 3b9efbfc4a472361e4437bbb22285234da43dfe3 --- Array/index.html | 76 ++++++++ Bool/index.html | 68 +++++++ ConstructibleFromJSValue/index.html | 14 +- ConvertibleToJSValue/index.html | 46 ++--- Dictionary/index.html | 76 ++++++++ Double/index.html | 68 +++++++ Float/index.html | 68 +++++++ Float32/index.html | 60 ++++++ Float64/index.html | 60 ++++++ Int/index.html | 81 +++++++++ Int16/index.html | 80 ++++++++ Int32/index.html | 80 ++++++++ Int64/index.html | 68 +++++++ Int8/index.html | 80 ++++++++ JSArray/index.html | 58 ++++-- JSArrayRef/index.html | 7 +- JSArray_Iterator/index.html | 14 +- JSBridgedClass/index.html | 134 +++++++++----- JSBridgedType/index.html | 93 +++++++--- JSClosure/index.html | 32 ++-- JSClosureProtocol/index.html | 42 +++-- JSDate/index.html | 182 +++++++++++++------ JSError/index.html | 78 +++++--- JSFunction/index.html | 51 ++++-- JSFunctionRef/index.html | 7 +- JSObject/index.html | 155 +++++++++------- JSObjectRef/index.html | 7 +- JSOneshotClosure/index.html | 50 ++--- JSPromise/index.html | 63 +++++-- JSString/index.html | 124 +++++++------ JSThrowingFunction/index.html | 28 ++- JSThrowingObject/index.html | 11 +- JSTimer/index.html | 14 +- JSTypedArray/index.html | 68 ++++--- JSValue/index.html | 221 +++++++++++++++-------- JSValueCodable/index.html | 7 +- JSValueCompatible/index.html | 6 +- JSValueConstructible/index.html | 7 +- JSValueConvertible/index.html | 7 +- JSValueDecoder/index.html | 18 +- Optional/index.html | 68 +++++++ RawJSValue/index.html | 60 ++++++ String/index.html | 68 +++++++ TypedArrayElement/index.html | 14 +- UInt/index.html | 81 +++++++++ UInt16/index.html | 80 ++++++++ UInt32/index.html | 80 ++++++++ UInt64/index.html | 68 +++++++ UInt8/index.html | 80 ++++++++ all.css | 2 +- getJSValue(this:index:)/index.html | 6 +- getJSValue(this:name:)/index.html | 6 +- index.html | 89 ++++++++- setJSValue(this:index:value:)/index.html | 6 +- setJSValue(this:name:value:)/index.html | 6 +- 55 files changed, 2567 insertions(+), 556 deletions(-) create mode 100644 Array/index.html create mode 100644 Bool/index.html create mode 100644 Dictionary/index.html create mode 100644 Double/index.html create mode 100644 Float/index.html create mode 100644 Float32/index.html create mode 100644 Float64/index.html create mode 100644 Int/index.html create mode 100644 Int16/index.html create mode 100644 Int32/index.html create mode 100644 Int64/index.html create mode 100644 Int8/index.html create mode 100644 Optional/index.html create mode 100644 RawJSValue/index.html create mode 100644 String/index.html create mode 100644 UInt/index.html create mode 100644 UInt16/index.html create mode 100644 UInt32/index.html create mode 100644 UInt64/index.html create mode 100644 UInt8/index.html diff --git a/Array/index.html b/Array/index.html new file mode 100644 index 000000000..6d946c755 --- /dev/null +++ b/Array/index.html @@ -0,0 +1,76 @@ + + + + + + JavaScriptKit - Array + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Array +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> [Element]? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Bool/index.html b/Bool/index.html new file mode 100644 index 000000000..183c5e345 --- /dev/null +++ b/Bool/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - Bool + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Bool +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Bool? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index b0554aa1b..12afed32e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -37,7 +37,9 @@

Constructible​From​JSValue

-
public protocol ConstructibleFromJSValue
+
+
public protocol ConstructibleFromJSValue 
+

Types conforming to this protocol can be constructed from JSValue.

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%77 @@ -121,7 +123,9 @@

Requirements

construct(from:​)

-
static func construct(from value: JSValue) -> Self?
+
+
static func construct(from value: JSValue) -> Self?
+

Construct an instance of Self, if possible, from the given JSValue. Return nil if the value is not compatible with the conforming Swift type.

@@ -156,7 +160,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e74770948..bd2680a39 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -37,7 +37,9 @@

Convertible​ToJSValue

-
public protocol ConvertibleToJSValue
+
+
public protocol ConvertibleToJSValue 
+

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%37 @@ -65,33 +67,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -121,7 +123,9 @@

Requirements

js​Value()

-
func jsValue() -> JSValue
+
+
func jsValue() -> JSValue
+

Create a JSValue that represents this object

@@ -133,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Dictionary/index.html b/Dictionary/index.html new file mode 100644 index 000000000..2bcbbb8b8 --- /dev/null +++ b/Dictionary/index.html @@ -0,0 +1,76 @@ + + + + + + JavaScriptKit - Dictionary + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Dictionary +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Double/index.html b/Double/index.html new file mode 100644 index 000000000..ecd6e77a5 --- /dev/null +++ b/Double/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - Double + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Double +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Double? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Float/index.html b/Float/index.html new file mode 100644 index 000000000..fc534f49b --- /dev/null +++ b/Float/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - Float + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Float +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Float? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Float32/index.html b/Float32/index.html new file mode 100644 index 000000000..5af2df434 --- /dev/null +++ b/Float32/index.html @@ -0,0 +1,60 @@ + + + + + + JavaScriptKit - Float32 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Float32 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Float32Array.function!
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Float64/index.html b/Float64/index.html new file mode 100644 index 000000000..61af59873 --- /dev/null +++ b/Float64/index.html @@ -0,0 +1,60 @@ + + + + + + JavaScriptKit - Float64 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Float64 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Float64Array.function!
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Int/index.html b/Int/index.html new file mode 100644 index 000000000..64d53261d --- /dev/null +++ b/Int/index.html @@ -0,0 +1,81 @@ + + + + + + JavaScriptKit - Int + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Int +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Int16/index.html b/Int16/index.html new file mode 100644 index 000000000..2ca80648a --- /dev/null +++ b/Int16/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - Int16 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Int16 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Int16Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Int32/index.html b/Int32/index.html new file mode 100644 index 000000000..bd1b96b98 --- /dev/null +++ b/Int32/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - Int32 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Int32 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Int32Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Int64/index.html b/Int64/index.html new file mode 100644 index 000000000..71b7cff9c --- /dev/null +++ b/Int64/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - Int64 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Int64 +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/Int8/index.html b/Int8/index.html new file mode 100644 index 000000000..54b1f0e22 --- /dev/null +++ b/Int8/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - Int8 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Int8 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Int8Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/JSArray/index.html b/JSArray/index.html index 9b1ec0aa9..4bd029dc2 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -37,7 +37,9 @@

JSArray

-
public class JSArray: JSBridgedClass
+
+
public class JSArray: JSBridgedClass 
+

A wrapper around the JavaScript Array class that exposes its properties in a type-safe and Swifty way.

@@ -51,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%71 @@ -119,7 +121,9 @@

Nested Type Aliases

Element

-
public typealias Element = JSValue
+
+
public typealias Element = JSValue
+

@@ -129,13 +133,17 @@

Initializers

init?(from:​)

-
public required convenience init?(from value: JSValue)
+
+
public required convenience init?(from value: JSValue) 
+

init?(_:​)

-
public convenience init?(_ jsObject: JSObject)
+
+
public convenience init?(_ jsObject: JSObject) 
+

Construct a JSArray from Array JSObject. Return nil if the object is not an Array.

@@ -165,7 +173,9 @@

Parameters

init(unsafely​Wrapping:​)

-
public required init(unsafelyWrapping jsObject: JSObject)
+
+
public required init(unsafelyWrapping jsObject: JSObject) 
+

@@ -175,31 +185,41 @@

Properties

constructor

-
let constructor = JSObject.global.Array.function!
+
+
public static let constructor = JSObject.global.Array.function!
+

js​Object

-
let jsObject: JSObject
+
+
public let jsObject: JSObject
+

start​Index

-
var startIndex: Int
+
+
public var startIndex: Int 
+

end​Index

-
var endIndex: Int
+
+
public var endIndex: Int 
+

length

-
var length: Int
+
+
public var length: Int 
+

The number of elements in that array including empty hole. Note that length respects JavaScript's Array.prototype.length

@@ -212,8 +232,8 @@

let array: JSArray = ...
-array.length // 3
-array.count  // 2
+array.length // 3
+array.count  // 2
 

@@ -221,7 +241,9 @@

count

-
var count: Int
+
+
public var count: Int 
+

The number of elements in that array not including empty hole. Note that count syncs with the number that Iterator can iterate. @@ -237,7 +259,9 @@

Methods

make​Iterator()

-
public func makeIterator() -> Iterator
+
+
public func makeIterator() -> Iterator 
+

@@ -248,7 +272,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index d5d8db97f..577181a9c 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -37,13 +37,16 @@

JSArray​Ref

-
@available(*, deprecated, renamed: "JSArray") public typealias JSArrayRef = JSArray
+
+
@available(*, deprecated, renamed: "JSArray")
+public typealias JSArrayRef = JSArray
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e54541c14..8193a3066 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -37,7 +37,9 @@

JSArray.​Iterator

-
public class Iterator: IteratorProtocol
+
+
public class Iterator: IteratorProtocol 
+
@@ -46,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%137 @@ -98,7 +100,9 @@

Methods

next()

-
public func next() -> Element?
+
+
public func next() -> Element? 
+
@@ -109,7 +113,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index c94f38ec9..e9d05c738 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,9 @@

JSBridged​Class

-
public protocol JSBridgedClass: JSBridgedType
+
+
public protocol JSBridgedClass: JSBridgedType 
+

Conform to this protocol when your Swift class wraps a JavaScript class.

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%23 @@ -75,83 +77,83 @@ - + JSBridgedClass->JSBridgedType - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -202,7 +204,34 @@

Types Conforming to JSBridged​Class

+
+

Default Implementations

+
+

+ value +

+
+
public var value: JSValue 
+
+
+
+

+ init?(from:​) +

+
+
public init?(from value: JSValue) 
+
+
+
+

+ init?(from:​) +

+
+
public init?(from object: JSObject) 
+
+
+
@@ -212,7 +241,9 @@

Requirements

constructor

-
var constructor: JSFunction
+
+
static var constructor: JSFunction 
+

The constructor function for the JavaScript class

@@ -222,11 +253,26 @@

js​Object

-
var jsObject: JSObject
+
+
var jsObject: JSObject 
+

The JavaScript object wrapped by this instance. You may assume that jsObject instanceof Self.constructor == true

+
+
+
+

+ init(unsafely​Wrapping:​) +

+
+
init(unsafelyWrapping jsObject: JSObject)
+
+
+

Create an instance wrapping the given JavaScript object. +You may assume that jsObject instanceof Self.constructor

+
@@ -235,7 +281,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b605c9f58..f45de19c9 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,9 @@

JSBridged​Type

-
public protocol JSBridgedType: JSValueCompatible, CustomStringConvertible
+
+
public protocol JSBridgedType: JSValueCompatible, CustomStringConvertible 
+

Use this protocol when your type has no single JavaScript class. For example, a union type of multiple classes or primitive values.

@@ -51,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%63 @@ -67,43 +69,43 @@ - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -123,7 +125,34 @@

Types Conforming to JSBridged​Type

+
+

Default Implementations

+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ description +

+
+
public var description: String 
+
+
+
@@ -133,10 +162,24 @@

Requirements

value

-
var value: JSValue
+
+
var value: JSValue 
+

This is the value your class wraps.

+
+
+
+

+ init?(from:​) +

+
+
init?(from value: JSValue)
+
+
+

If your class is incompatible with the provided value, return nil.

+
@@ -145,7 +188,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSClosure/index.html b/JSClosure/index.html index be2e3fcfe..e01fac517 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -37,7 +37,9 @@

JSClosure

-
public class JSClosure: JSObject, JSClosureProtocol
+
+
public class JSClosure: JSObject, JSClosureProtocol 
+

JSClosure represents a JavaScript function the body of which is written in Swift. This type can be passed as a callback handler to JavaScript functions. @@ -51,13 +53,13 @@

let eventListenter = JSClosure { _ in
     ...
-    return JSValue.undefined
+    return JSValue.undefined
 }
 
-button.addEventListener!("click", JSValue.function(eventListenter))
+button.addEventListener!("click", JSValue.function(eventListenter))
 ...
-button.removeEventListener!("click", JSValue.function(eventListenter))
-eventListenter.release()
+button.removeEventListener!("click", JSValue.function(eventListenter))
+eventListenter.release()
 

@@ -68,11 +70,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%51 @@ -141,13 +143,19 @@

Initializers

init(_:​)

-
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure") @_disfavoredOverload public convenience init(_ body: @escaping ([JSValue]) -> ())
+
+
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure")
+    @_disfavoredOverload
+    public convenience init(_ body: @escaping ([JSValue]) -> ()) 
+

init(_:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue)
+
+
public init(_ body: @escaping ([JSValue]) -> JSValue) 
+
@@ -157,7 +165,9 @@

Methods

release()

-
public func release()
+
+
public func release() 
+
@@ -168,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index fb0ca01f7..bc50df0b2 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -37,7 +37,9 @@

JSClosure​Protocol

-
public protocol JSClosureProtocol: JSValueCompatible
+
+
public protocol JSClosureProtocol: JSValueCompatible 
+

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%43 @@ -66,31 +68,31 @@ - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -102,7 +104,7 @@ - + JSClosure->JSClosureProtocol @@ -141,7 +143,9 @@

Requirements

release()

-
func release()
+
+
func release()
+

Release this function resource. After calling release, calling this function from JavaScript will fail.

@@ -154,7 +158,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSDate/index.html b/JSDate/index.html index 7b1959672..31b2ea433 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,9 @@

JSDate

-
public final class JSDate: JSBridgedClass
+
+
public final class JSDate: JSBridgedClass 
+

A wrapper around the JavaScript Date class that @@ -56,11 +58,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%83 @@ -71,30 +73,30 @@ - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -119,7 +121,9 @@

Initializers

init(milliseconds​Since​Epoch:​)

-
public init(millisecondsSinceEpoch: Double? = nil)
+
+
public init(millisecondsSinceEpoch: Double? = nil) 
+

Creates a new instance of the JavaScript Date class with a given amount of milliseconds that passed since midnight 01 January 1970 UTC.

@@ -130,7 +134,17 @@

init(year:​month​Index:​day:​hours:​minutes:​seconds:​milliseconds:​)

-
public init(year: Int, monthIndex: Int, day: Int = 1, hours: Int = 0, minutes: Int = 0, seconds: Int = 0, milliseconds: Int = 0)
+
+
public init(
+        year: Int,
+        monthIndex: Int,
+        day: Int = 1,
+        hours: Int = 0,
+        minutes: Int = 0,
+        seconds: Int = 0,
+        milliseconds: Int = 0
+    ) 
+

According to the standard, monthIndex is zero-indexed, where 11 is December. day represents a day of the month starting at 1.

@@ -141,7 +155,9 @@

init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping jsObject: JSObject)
+
+
public init(unsafelyWrapping jsObject: JSObject) 
+
@@ -151,7 +167,9 @@

Properties

constructor

-
let constructor = JSObject.global.Date.function!
+
+
public static let constructor = JSObject.global.Date.function!
+

The constructor function used to create new Date objects.

@@ -161,7 +179,9 @@

js​Object

-
let jsObject: JSObject
+
+
public let jsObject: JSObject
+

The underlying JavaScript Date object.

@@ -171,7 +191,9 @@

full​Year

-
var fullYear: Int
+
+
public var fullYear: Int 
+

Year of this date in local time zone.

@@ -181,7 +203,9 @@

month

-
var month: Int
+
+
public var month: Int 
+

Month of this date in 0–11 range in local time zone.

@@ -191,7 +215,9 @@

date

-
var date: Int
+
+
public var date: Int 
+

The day of the month in 1..31 range in local time zone.

@@ -201,7 +227,9 @@

day

-
var day: Int
+
+
public var day: Int 
+

The day of the week in 0..6 range in local time zone.

@@ -211,7 +239,9 @@

hours

-
var hours: Int
+
+
public var hours: Int 
+

The amount of hours in this day from 0..23 range in local time zone.

@@ -221,7 +251,9 @@

minutes

-
var minutes: Int
+
+
public var minutes: Int 
+

The amount of minutes in this hours from 0..59 range in local time zone.

@@ -231,7 +263,9 @@

seconds

-
var seconds: Int
+
+
public var seconds: Int 
+

The amount of seconds in this minute from 0..59 range in local time zone.

@@ -241,7 +275,9 @@

milliseconds

-
var milliseconds: Int
+
+
public var milliseconds: Int 
+

The amount of milliseconds in this second 0..999 range in local time zone.

@@ -251,7 +287,9 @@

utc​Full​Year

-
var utcFullYear: Int
+
+
public var utcFullYear: Int 
+

Year of this date in the UTC time zone.

@@ -261,7 +299,9 @@

utc​Month

-
var utcMonth: Int
+
+
public var utcMonth: Int 
+

Month of this date in 0–11 range in the UTC time zone.

@@ -271,7 +311,9 @@

utc​Date

-
var utcDate: Int
+
+
public var utcDate: Int 
+

The day of the month in 1..31 range in the UTC time zone.

@@ -281,7 +323,9 @@

utc​Day

-
var utcDay: Int
+
+
public var utcDay: Int 
+

The day of the week in 0..6 range in the UTC time zone.

@@ -291,7 +335,9 @@

utc​Hours

-
var utcHours: Int
+
+
public var utcHours: Int 
+

The amount of hours in this day from 0..23 range in the UTC time zone.

@@ -301,7 +347,9 @@

utc​Minutes

-
var utcMinutes: Int
+
+
public var utcMinutes: Int 
+

The amount of minutes in this hours from 0..59 range in the UTC time zone.

@@ -311,7 +359,9 @@

utc​Seconds

-
var utcSeconds: Int
+
+
public var utcSeconds: Int 
+

The amount of seconds in this minute from 0..59 range in the UTC time zone.

@@ -321,7 +371,9 @@

utc​Milliseconds

-
var utcMilliseconds: Int
+
+
public var utcMilliseconds: Int 
+

The amount of milliseconds in this second 0..999 range in the UTC time zone.

@@ -331,7 +383,9 @@

timezone​Offset

-
var timezoneOffset: Int
+
+
public var timezoneOffset: Int 
+

Offset in minutes between the local time zone and UTC.

@@ -345,7 +399,9 @@

Methods

to​ISOString()

-
public func toISOString() -> String
+
+
public func toISOString() -> String 
+

Returns a string conforming to ISO 8601 that contains date and time, e.g. "2020-09-15T08:56:54.811Z".

@@ -356,7 +412,9 @@

to​Locale​Date​String()

-
public func toLocaleDateString() -> String
+
+
public func toLocaleDateString() -> String 
+

Returns a string with date parts in a format defined by user's locale, e.g. "9/15/2020".

@@ -366,7 +424,9 @@

to​Locale​Time​String()

-
public func toLocaleTimeString() -> String
+
+
public func toLocaleTimeString() -> String 
+

Returns a string with time parts in a format defined by user's locale, e.g. "10:04:14".

@@ -376,7 +436,9 @@

to​UTCString()

-
public func toUTCString() -> String
+
+
public func toUTCString() -> String 
+

Returns a string formatted according to rfc7231 and modified according to @@ -389,7 +451,9 @@

now()

-
public static func now() -> Double
+
+
public static func now() -> Double 
+

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring leap seconds.

@@ -400,24 +464,34 @@

value​Of()

-
public func valueOf() -> Double
+
+
public func valueOf() -> Double 
+

Number of milliseconds since midnight 01 January 1970 UTC to the given date ignoring leap seconds.

-
+
+
+

Operators

+ +

- ==(lhs:​rhs:​) + ==

-
public static func ==(lhs: JSDate, rhs: JSDate) -> Bool
+
+
public static func == (lhs: JSDate, rhs: JSDate) -> Bool 
+
-
+

- <(lhs:​rhs:​) + <

-
public static func <(lhs: JSDate, rhs: JSDate) -> Bool
+
+
public static func < (lhs: JSDate, rhs: JSDate) -> Bool 
+
@@ -428,7 +502,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSError/index.html b/JSError/index.html index 0102483d6..9c5f687d2 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -37,7 +37,9 @@

JSError

-
public final class JSError: Error, JSBridgedClass
+
+
public final class JSError: Error, JSBridgedClass 
+

A wrapper around the JavaScript Error class that @@ -52,11 +54,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%95 @@ -79,30 +81,30 @@ - - -Error - -Error - - - -JSError->Error - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass + + + + + +Error + +Error + + + +JSError->Error @@ -128,7 +130,9 @@

Initializers

init(message:​)

-
public init(message: String)
+
+
public init(message: String) 
+

Creates a new instance of the JavaScript Error class with a given message.

@@ -138,7 +142,9 @@

init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping jsObject: JSObject)
+
+
public init(unsafelyWrapping jsObject: JSObject) 
+
@@ -148,7 +154,9 @@

Properties

constructor

-
let constructor = JSObject.global.Error.function!
+
+
public static let constructor = JSObject.global.Error.function!
+

The constructor function used to create new JavaScript Error objects.

@@ -158,7 +166,9 @@

js​Object

-
let jsObject: JSObject
+
+
public let jsObject: JSObject
+

The underlying JavaScript Error object.

@@ -168,7 +178,9 @@

message

-
var message: String
+
+
public var message: String 
+

The error message of the underlying Error object.

@@ -178,7 +190,9 @@

name

-
var name: String
+
+
public var name: String 
+

The name (usually corresponds to the name of the underlying class) of a given error.

@@ -188,7 +202,9 @@

stack

-
var stack: String?
+
+
public var stack: String? 
+

The JavaScript call stack that led to the creation of this error object.

@@ -198,7 +214,9 @@

description

-
var description: String
+
+
public var description: String 
+

The textual representation of this error.

@@ -212,7 +230,9 @@

Methods

js​Value()

-
public func jsValue() -> JSValue
+
+
public func jsValue() -> JSValue 
+

Creates a new JSValue from this JSError instance.

@@ -227,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 0ddc97c9f..e9909c093 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -37,7 +37,9 @@

JSFunction

-
public class JSFunction: JSObject
+
+
public class JSFunction: JSObject 
+

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

@@ -46,7 +48,7 @@

e.g.

-
let alert: JSFunction = JSObject.global.alert.function!
+
let alert: JSFunction = JSObject.global.alert.function!
 // Call `JSFunction` as a function
 alert("Hello, world")
 
@@ -59,11 +61,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%103 @@ -111,7 +113,9 @@

Properties

`throws`

-
var `throws`: JSThrowingFunction
+
+
public var `throws`: JSThrowingFunction 
+

A modifier to call this function as a throwing function

@@ -124,8 +128,8 @@

}

-
let validateAge = JSObject.global.validateAge.function!
-try validateAge.throws(20)
+
let validateAge = JSObject.global.validateAge.function!
+try validateAge.throws(20)
 

@@ -137,7 +141,10 @@

Methods

call​AsFunction(this:​arguments:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue
+
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue 
+

Call this function with given arguments and binding given this as context.

@@ -175,7 +182,10 @@

Returns

call​AsFunction(this:​_:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue) -> JSValue
+
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) -> JSValue 
+

A variadic arguments version of callAsFunction.

@@ -185,7 +195,9 @@

new(arguments:​)

-
public func new(arguments: [ConvertibleToJSValue]) -> JSObject
+
+
public func new(arguments: [ConvertibleToJSValue]) -> JSObject 
+

Instantiate an object from this function as a constructor.

@@ -233,7 +245,9 @@

Returns

new(_:​)

-
public func new(_ arguments: ConvertibleToJSValue) -> JSObject
+
+
public func new(_ arguments: ConvertibleToJSValue...) -> JSObject 
+

A variadic arguments version of new.

@@ -243,19 +257,26 @@

from(_:​)

-
@available(*, unavailable, message: "Please use JSClosure instead") public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction
+
+
@available(*, unavailable, message: "Please use JSClosure instead")
+    public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction 
+

construct(from:​)

-
public override class func construct(from value: JSValue) -> Self?
+
+
public override class func construct(from value: JSValue) -> Self? 
+

js​Value()

-
override public func jsValue() -> JSValue
+
+
override public func jsValue() -> JSValue 
+
@@ -266,7 +287,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 3cbaa77d8..491d0ba72 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -37,13 +37,16 @@

JSFunction​Ref

-
@available(*, deprecated, renamed: "JSFunction") public typealias JSFunctionRef = JSFunction
+
+
@available(*, deprecated, renamed: "JSFunction")
+public typealias JSFunctionRef = JSFunction
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSObject/index.html b/JSObject/index.html index 6db0dd245..986aff1fc 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,10 @@

JSObject

-
@dynamicMemberLookup public class JSObject: Equatable
+
+
@dynamicMemberLookup
+public class JSObject: Equatable 
+

JSObject represents an object in JavaScript and supports dynamic member lookup. Any member access like object.foo will dynamically request the JavaScript and Swift @@ -49,8 +52,8 @@

e.g.

-
let document = JSObject.global.document.object!
-let divElement = document.createElement!("div")
+
let document = JSObject.global.document.object!
+let divElement = document.createElement!("div")
 

The lifetime of this object is managed by the JavaScript and Swift runtime bridge library with reference counting system.

@@ -64,11 +67,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%107 @@ -79,44 +82,59 @@ + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -CustomStringConvertible - -CustomStringConvertible + + +JSOneshotClosure + + +JSOneshotClosure + - - -JSObject->CustomStringConvertible - - + + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -128,26 +146,11 @@ - + JSClosure->JSObject - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - - @@ -184,7 +187,9 @@

Properties

`throwing`

-
var `throwing`: JSThrowingObject
+
+
public var `throwing`: JSThrowingObject 
+

A modifier to call methods as throwing methods capturing this

@@ -199,8 +204,8 @@

}

-
let animal = JSObject.global.animal.object!
-try animal.throwing.validateAge!()
+
let animal = JSObject.global.animal.object!
+try animal.throwing.validateAge!()
 

@@ -208,7 +213,9 @@

global

-
let global
+
+
public static let global 
+

A JSObject of the global scope object. This allows access to the global properties and global names by accessing the JSObject returned.

@@ -219,7 +226,9 @@

description

-
var description: String
+
+
public var description: String 
+
@@ -229,7 +238,9 @@

Methods

is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool
+
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool 
+

Return true if this value is an instance of the passed constructor function.

@@ -257,11 +268,33 @@

Returns

The result of instanceof in the JavaScript environment.

-
+
+

+ construct(from:​) +

+
+
public class func construct(from value: JSValue) -> Self? 
+
+
+
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+
+

Operators

+ +

- ==(lhs:​rhs:​) + ==

-
public static func ==(lhs: JSObject, rhs: JSObject) -> Bool
+
+
public static func == (lhs: JSObject, rhs: JSObject) -> Bool 
+

Returns a Boolean value indicating whether two values point to same objects.

@@ -291,18 +324,6 @@

Parameters

-
-
-

- construct(from:​) -

-
public class func construct(from value: JSValue) -> Self?
-
-
-

- js​Value() -

-
public func jsValue() -> JSValue
@@ -313,7 +334,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ea1f2dd49..610a945ce 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -37,13 +37,16 @@

JSObject​Ref

-
@available(*, deprecated, renamed: "JSObject") public typealias JSObjectRef = JSObject
+
+
@available(*, deprecated, renamed: "JSObject")
+public typealias JSObjectRef = JSObject
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index fc5e89001..b9594151e 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -37,7 +37,9 @@

JSOneshot​Closure

-
public class JSOneshotClosure: JSObject, JSClosureProtocol
+
+
public class JSOneshotClosure: JSObject, JSClosureProtocol 
+

JSOneshotClosure is a JavaScript function that can be called only once.

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%89 @@ -65,33 +67,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -123,7 +125,9 @@

Initializers

init(_:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue)
+
+
public init(_ body: @escaping ([JSValue]) -> JSValue) 
+
@@ -133,7 +137,9 @@

Methods

release()

-
public func release()
+
+
public func release() 
+

Release this function resource. After calling release, calling this function from JavaScript will fail.

@@ -149,7 +155,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 0ddc0edea..053b0df9f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -37,7 +37,9 @@

JSPromise

-
public final class JSPromise: JSBridgedClass
+
+
public final class JSPromise: JSBridgedClass 
+

A wrapper around the JavaScript Promise class that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both @@ -111,7 +113,9 @@

Initializers

init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping object: JSObject)
+
+
public init(unsafelyWrapping object: JSObject) 
+

This private initializer assumes that the passed object is a JavaScript Promise

@@ -121,7 +125,9 @@

init?(_:​)

-
public convenience init?(_ jsObject: JSObject)
+
+
public convenience init?(_ jsObject: JSObject) 
+

Creates a new JSPromise instance from a given JavaScript Promise object. If jsObject is not an instance of JavaScript Promise, this initializer will return nil.

@@ -132,7 +138,9 @@

init(resolver:​)

-
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ())
+
+
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ()) 
+

Creates a new JSPromise instance from a given resolver closure. resolver takes two closure that your code should call to either resolve or reject this JSPromise instance.

@@ -147,7 +155,9 @@

Properties

js​Object

-
let jsObject: JSObject
+
+
public let jsObject: JSObject
+

The underlying JavaScript Promise object.

@@ -157,7 +167,9 @@

constructor

-
var constructor: JSFunction
+
+
public static var constructor: JSFunction 
+
@@ -167,7 +179,9 @@

Methods

js​Value()

-
public func jsValue() -> JSValue
+
+
public func jsValue() -> JSValue 
+

The underlying JavaScript Promise object wrapped as JSValue.

@@ -177,7 +191,9 @@

construct(from:​)

-
public static func construct(from value: JSValue) -> Self?
+
+
public static func construct(from value: JSValue) -> Self? 
+

Creates a new JSPromise instance from a given JavaScript Promise object. If value is not an object and is not an instance of JavaScript Promise, this function will @@ -189,19 +205,26 @@

resolve(_:​)

-
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise
+
+
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise 
+

reject(_:​)

-
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise
+
+
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise 
+

then(success:​)

-
@discardableResult public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise
+
+
@discardableResult
+    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+

Schedules the success closure to be invoked on sucessful completion of self.

@@ -211,7 +234,11 @@

then(success:​failure:​)

-
@discardableResult public func then(success: @escaping (JSValue) -> ConvertibleToJSValue, failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise
+
+
@discardableResult
+    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue,
+                     failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+

Schedules the success closure to be invoked on sucessful completion of self.

@@ -221,7 +248,10 @@

`catch`(failure:​)

-
@discardableResult public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise
+
+
@discardableResult
+    public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+

Schedules the failure closure to be invoked on rejected completion of self.

@@ -231,7 +261,10 @@

finally(success​OrFailure:​)

-
@discardableResult public func finally(successOrFailure: @escaping () -> ()) -> JSPromise
+
+
@discardableResult
+    public func finally(successOrFailure: @escaping () -> ()) -> JSPromise 
+

Schedules the failure closure to be invoked on either successful or rejected completion of self.

@@ -247,7 +280,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSString/index.html b/JSString/index.html index c69365994..a9890e524 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -26,7 +26,7 @@ @@ -37,7 +37,9 @@

JSString

-
public struct JSString: LosslessStringConvertible, Equatable
+
+
public struct JSString: LosslessStringConvertible, Equatable 
+

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

@@ -62,11 +64,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%119 @@ -77,69 +79,69 @@ - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue @@ -169,7 +171,9 @@

Initializers

init(_:​)

-
public init(_ stringValue: String)
+
+
public init(_ stringValue: String) 
+

Instantiate a new JSString with given Swift.String.

@@ -179,7 +183,9 @@

init(string​Literal:​)

-
public init(stringLiteral value: String)
+
+
public init(stringLiteral value: String) 
+
@@ -189,7 +195,9 @@

Properties

description

-
var description: String
+
+
public var description: String 
+

A Swift representation of this JSString. Note that this accessor may copy the JS string value into Swift side memory.

@@ -204,19 +212,29 @@

Methods

construct(from:​)

-
public static func construct(from value: JSValue) -> JSString?
+
+
public static func construct(from value: JSValue) -> JSString? 
+

js​Value()

-
public func jsValue() -> JSValue
+
+
public func jsValue() -> JSValue 
-
+
+
+
+

Operators

+ +

- ==(lhs:​rhs:​) + ==

-
public static func ==(lhs: JSString, rhs: JSString) -> Bool
+
+
public static func == (lhs: JSString, rhs: JSString) -> Bool 
+

Returns a Boolean value indicating whether two strings are equal values.

@@ -256,7 +274,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 06b5f7c36..f812b50d7 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -37,7 +37,9 @@

JSThrowing​Function

-
public class JSThrowingFunction
+
+
public class JSThrowingFunction 
+

A JSFunction wrapper that enables throwing function calls. Exceptions produced by JavaScript functions will be thrown as JSValue.

@@ -51,7 +53,9 @@

Initializers

init(_:​)

-
public init(_ base: JSFunction)
+
+
public init(_ base: JSFunction) 
+
@@ -61,7 +65,10 @@

Methods

call​AsFunction(this:​arguments:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) throws -> JSValue
+
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) throws -> JSValue 
+

Call this function with given arguments and binding given this as context.

@@ -99,7 +106,10 @@

Returns

call​AsFunction(this:​_:​)

-
@discardableResult public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue) throws -> JSValue
+
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) throws -> JSValue 
+

A variadic arguments version of callAsFunction.

@@ -109,7 +119,9 @@

new(arguments:​)

-
public func new(arguments: [ConvertibleToJSValue]) throws -> JSObject
+
+
public func new(arguments: [ConvertibleToJSValue]) throws -> JSObject 
+

Instantiate an object from this function as a throwing constructor.

@@ -157,7 +169,9 @@

Returns

new(_:​)

-
public func new(_ arguments: ConvertibleToJSValue) throws -> JSObject
+
+
public func new(_ arguments: ConvertibleToJSValue...) throws -> JSObject 
+

A variadic arguments version of new.

@@ -172,7 +186,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index a5278a338..750072c46 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -37,7 +37,10 @@

JSThrowing​Object

-
@dynamicMemberLookup public class JSThrowingObject
+
+
@dynamicMemberLookup
+public class JSThrowingObject 
+

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

@@ -51,7 +54,9 @@

Initializers

init(_:​)

-
public init(_ base: JSObject)
+
+
public init(_ base: JSObject) 
+
@@ -62,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 4732853a8..50b15a3ba 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -37,7 +37,9 @@

JSTimer

-
public final class JSTimer
+
+
public final class JSTimer 
+

This timer is an abstraction over setInterval / clearInterval and @@ -60,7 +62,9 @@

Initializers

init(milliseconds​Delay:​is​Repeating:​callback:​)

-
public init(millisecondsDelay: Double, isRepeating: Bool = false, callback: @escaping () -> ())
+
+
public init(millisecondsDelay: Double, isRepeating: Bool = false, callback: @escaping () -> ()) 
+

Creates a new timer instance that calls setInterval or setTimeout JavaScript functions for you under the hood.

@@ -106,7 +110,9 @@

Properties

is​Repeating

-
let isRepeating: Bool
+
+
public let isRepeating: Bool
+

Indicates whether this timer instance calls its callback repeatedly at a given delay.

@@ -121,7 +127,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index a690d540f..855b46a64 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -37,7 +37,9 @@

JSTyped​Array

-
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement
+
+
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement 
+

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: BigInt-based TypedArrays are currently not supported.

@@ -51,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%57 @@ -66,30 +68,30 @@ - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -114,7 +116,9 @@

Initializers

init(length:​)

-
public init(length: Int)
+
+
public init(length: Int) 
+

Initialize a new instance of TypedArray in JavaScript environment with given length. All the elements will be initialized to zero.

@@ -144,19 +148,25 @@

Parameters

init(unsafely​Wrapping:​)

-
required public init(unsafelyWrapping jsObject: JSObject)
+
+
required public init(unsafelyWrapping jsObject: JSObject) 
+

init(array​Literal:​)

-
required public convenience init(arrayLiteral elements: Element)
+
+
required public convenience init(arrayLiteral elements: Element...) 
+

init(_:​)

-
public convenience init(_ array: [Element])
+
+
public convenience init(_ array: [Element]) 
+

Initialize a new instance of TypedArray in JavaScript environment with given elements.

@@ -185,7 +195,9 @@

Parameters

init(_:​)

-
public convenience init<S: Sequence>(_ sequence: S)
+
+
public convenience init<S: Sequence>(_ sequence: S) 
+

Convenience initializer for Sequence.

@@ -199,13 +211,17 @@

Properties

constructor

-
var constructor: JSFunction
+
+
public static var constructor: JSFunction 
+

js​Object

-
var jsObject: JSObject
+
+
public var jsObject: JSObject
+
@@ -216,7 +232,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValue/index.html b/JSValue/index.html index 12b7f8c7f..b0b5cb0fc 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -37,7 +37,10 @@

JSValue

-
@dynamicMemberLookup public enum JSValue
+
+
@dynamicMemberLookup
+public enum JSValue: Equatable 
+

JSValue represents a value in JavaScript.

@@ -50,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%7 @@ -65,87 +68,87 @@ - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible @@ -173,25 +176,33 @@

Initializers

init(string​Literal:​)

-
public init(stringLiteral value: String)
+
+
public init(stringLiteral value: String) 
+

init(integer​Literal:​)

-
public init(integerLiteral value: Int32)
+
+
public init(integerLiteral value: Int32) 
+

init(float​Literal:​)

-
public init(floatLiteral value: Double)
+
+
public init(floatLiteral value: Double) 
+

init(nil​Literal:​)

-
public init(nilLiteral: ())
+
+
public init(nilLiteral: ()) 
+
@@ -201,43 +212,57 @@

Enumeration Cases

boolean

-
case boolean(: Bool)
+
+
case boolean(Bool)
+

string

-
case string(: JSString)
+
+
case string(JSString)
+

number

-
case number(: Double)
+
+
case number(Double)
+

object

-
case object(: JSObject)
+
+
case object(JSObject)
+

null

-
case null
+
+
case null
+

undefined

-
case undefined
+
+
case undefined
+

function

-
case function(: JSFunction)
+
+
case function(JSFunction)
+
@@ -247,13 +272,17 @@

Properties

array

-
var array: JSArray?
+
+
public var array: JSArray? 
+

boolean

-
var boolean: Bool?
+
+
public var boolean: Bool? 
+

Returns the Bool value of this JS value if its type is boolean. If not, returns nil.

@@ -264,7 +293,9 @@

string

-
var string: String?
+
+
public var string: String? 
+

Returns the String value of this JS value if the type is string. If not, returns nil.

@@ -281,7 +312,9 @@

js​String

-
var jsString: JSString?
+
+
public var jsString: JSString? 
+

Returns the JSString value of this JS value if the type is string. If not, returns nil.

@@ -292,7 +325,9 @@

number

-
var number: Double?
+
+
public var number: Double? 
+

Returns the Double value of this JS value if the type is number. If not, returns nil.

@@ -303,7 +338,9 @@

object

-
var object: JSObject?
+
+
public var object: JSObject? 
+

Returns the JSObject of this JS value if its type is object. If not, returns nil.

@@ -314,7 +351,9 @@

function

-
var function: JSFunction?
+
+
public var function: JSFunction? 
+

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

@@ -325,7 +364,9 @@

is​Null

-
var isNull: Bool
+
+
public var isNull: Bool 
+

Returns the true if this JS value is null. If not, returns false.

@@ -336,7 +377,9 @@

is​Undefined

-
var isUndefined: Bool
+
+
public var isUndefined: Bool 
+

Returns the true if this JS value is undefined. If not, returns false.

@@ -347,7 +390,9 @@

description

-
var description: String
+
+
public var description: String 
+
@@ -357,31 +402,42 @@

Methods

construct(from:​)

-
public static func construct(from value: JSValue) -> Self?
+
+
public static func construct(from value: JSValue) -> Self? 
+

js​Value()

-
public func jsValue() -> JSValue
+
+
public func jsValue() -> JSValue 
+

from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue
+
+
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue 
+

string(_:​)

-
public static func string(_ value: String) -> JSValue
+
+
public static func string(_ value: String) -> JSValue 
+

function(_:​)

-
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.") public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue
+
+
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
+    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue 
+

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -389,22 +445,22 @@

Migrate this usage

-
button.addEventListener!("click", JSValue.function { _ in
+
button.addEventListener!("click", JSValue.function { _ in
     ...
-    return JSValue.undefined
+    return JSValue.undefined
 })
 

into below code.

let eventListenter = JSClosure { _ in
     ...
-    return JSValue.undefined
+    return JSValue.undefined
 }
 
-button.addEventListener!("click", JSValue.function(eventListenter))
+button.addEventListener!("click", JSValue.function(eventListenter))
 ...
-button.removeEventListener!("click", JSValue.function(eventListenter))
-eventListenter.release()
+button.removeEventListener!("click", JSValue.function(eventListenter))
+eventListenter.release()
 

@@ -412,13 +468,18 @@

function(_:​)

-
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.") public static func function(_ closure: JSClosure) -> JSValue
+
+
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
+    public static func function(_ closure: JSClosure) -> JSValue 
+

is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool
+
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool 
+

Return true if this value is an instance of the passed constructor function. Returns false for everything except objects and functions.

@@ -456,7 +517,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5a726d5a5..d5cd0a9a3 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -37,13 +37,16 @@

JSValue​Codable

-
@available(*, deprecated, renamed: "JSValueCompatible") public typealias JSValueCodable = JSValueCompatible
+
+
@available(*, deprecated, renamed: "JSValueCompatible")
+public typealias JSValueCodable = JSValueCompatible
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 2a4607665..34ef6ae8d 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -37,13 +37,15 @@

JSValue​Compatible

-
public typealias JSValueCompatible = ConvertibleToJSValue & ConstructibleFromJSValue
+
+
public typealias JSValueCompatible = ConvertibleToJSValue & ConstructibleFromJSValue
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f62476673..fc88d3222 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -37,13 +37,16 @@

JSValue​Constructible

-
@available(*, deprecated, renamed: "ConstructibleFromJSValue") public typealias JSValueConstructible = ConstructibleFromJSValue
+
+
@available(*, deprecated, renamed: "ConstructibleFromJSValue")
+public typealias JSValueConstructible = ConstructibleFromJSValue
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d03588f2e..343593c77 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -37,13 +37,16 @@

JSValue​Convertible

-
@available(*, deprecated, renamed: "ConvertibleToJSValue") public typealias JSValueConvertible = ConvertibleToJSValue
+
+
@available(*, deprecated, renamed: "ConvertibleToJSValue")
+public typealias JSValueConvertible = ConvertibleToJSValue
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index cc9b0c05e..a6486f2f7 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -37,7 +37,9 @@

JSValue​Decoder

-
public class JSValueDecoder
+
+
public class JSValueDecoder 
+

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

@@ -50,7 +52,9 @@

Initializers

init()

-
public init()
+
+
public init() 
+

Initializes a new JSValueDecoder.

@@ -64,7 +68,13 @@

Methods

decode(_:​from:​user​Info:​)

-
public func decode<T>(_: T.Type = T.self, from value: JSValue, userInfo: [CodingUserInfoKey: Any] = [:]) throws -> T where T: Decodable
+
+
public func decode<T>(
+        _: T.Type = T.self,
+        from value: JSValue,
+        userInfo: [CodingUserInfoKey: Any] = [:]
+    ) throws -> T where T: Decodable 
+

Decodes a top-level value of the given type from the given JavaScript value representation.

@@ -104,7 +114,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Optional/index.html b/Optional/index.html new file mode 100644 index 000000000..96305fdc6 --- /dev/null +++ b/Optional/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - Optional + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + Optional +

+
+

Methods

+ +
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/RawJSValue/index.html b/RawJSValue/index.html new file mode 100644 index 000000000..f340919d3 --- /dev/null +++ b/RawJSValue/index.html @@ -0,0 +1,60 @@ + + + + + + JavaScriptKit - RawJSValue + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + RawJSValue +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/String/index.html b/String/index.html new file mode 100644 index 000000000..332ca224e --- /dev/null +++ b/String/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - String + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + String +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> String? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 6c22dadda..fa041d462 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -37,7 +37,9 @@

Typed​Array​Element

-
public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValue
+
+
public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValue 
+

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

@@ -50,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%131 @@ -121,7 +123,9 @@

Requirements

typed​Array​Class

-
var typedArrayClass: JSFunction
+
+
static var typedArrayClass: JSFunction 
+

The constructor function for the TypedArray class for this particular kind of number

@@ -133,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt/index.html b/UInt/index.html new file mode 100644 index 000000000..a1b5a1e00 --- /dev/null +++ b/UInt/index.html @@ -0,0 +1,81 @@ + + + + + + JavaScriptKit - UInt + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + UInt +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/UInt16/index.html b/UInt16/index.html new file mode 100644 index 000000000..6b52a9944 --- /dev/null +++ b/UInt16/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - UInt16 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + UInt16 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Uint16Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/UInt32/index.html b/UInt32/index.html new file mode 100644 index 000000000..9477805a3 --- /dev/null +++ b/UInt32/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - UInt32 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + UInt32 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Uint32Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/UInt64/index.html b/UInt64/index.html new file mode 100644 index 000000000..160e76924 --- /dev/null +++ b/UInt64/index.html @@ -0,0 +1,68 @@ + + + + + + JavaScriptKit - UInt64 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + UInt64 +

+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/UInt8/index.html b/UInt8/index.html new file mode 100644 index 000000000..3199ad6f3 --- /dev/null +++ b/UInt8/index.html @@ -0,0 +1,80 @@ + + + + + + JavaScriptKit - UInt8 + + + +
+ + + JavaScriptKit + + Documentation + + Beta +
+ + + + + +
+
+

+ Extensions on + UInt8 +

+
+

Properties

+ +
+

+ typed​Array​Class +

+
+
public static var typedArrayClass = JSObject.global.Uint8Array.function!
+
+
+
+
+

Methods

+ +
+

+ js​Value() +

+
+
public func jsValue() -> JSValue 
+
+
+
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self? 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-beta.6. +

+
+ + diff --git a/all.css b/all.css index 199ada12f..24e852ca9 100644 --- a/all.css +++ b/all.css @@ -1 +1 @@ -:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0130 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 110-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0170 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 11.05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 011.92.35V65a5.69 5.69 0 00-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71L19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0 .5em .2em 0;vertical-align:middle;display:inline-block}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:.4em}:matches(h1,h2,h3,h4,h5,h6)+:matches(h1,h2,h3,h4,h5,h6){margin-top:.4em}:is(p,ul,ol)+:is(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:matches(p,ul,ol)+:matches(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-feature-settings:"c2sc";font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{margin:0;list-style:none}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border-radius:4px;border:1px solid #e5e5ea;border:1px solid var(--separator);color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input [type=email]:focus,input[type=number],input [type=number]:focus,input[type=password],input [type=password]:focus,input[type=tel],input [type=tel]:focus,input[type=text],input [type=text]:focus,input[type=url],input [type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-webkit-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}:-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border-radius:4px;border:none;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;outline:0;box-shadow:0 0 0 3px rgba(0,136,204,.3);z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{width:100%;font:300 11pt/13pt sans-serif;font:var(--caption-1);caption-side:bottom;margin-bottom:2em}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{width:90vw;max-width:1280px;margin:1em auto}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{text-transform:uppercase;font-size:small;font-weight:300;letter-spacing:.1ch}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;padding:1em 0;font:300 11pt/13pt sans-serif;font:var(--caption-1)}@media screen and (max-width:768px){body{width:96vw;max-width:100%}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);text-align:left;padding:1em 0}body>nav{display:none}body>main{padding:0 1em}}@media screen and (max-width:768px){#relationships figure{display:none}section>[role=article][class] pre{margin-left:-2.5em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;overflow:auto;padding:0 1em 3em;position:-webkit-sticky;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-left:2em;margin-bottom:1em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:.75em;margin-bottom:2em;overflow-x:auto;text-indent:-2em;padding:1em 1em 1em 3em;white-space:pre-wrap}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{text-decoration:underline;color:#8e8e93;color:var(--placeholder-text)}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{max-width:100%;height:auto!important;margin:0 auto;display:block}h1 small{font-size:.5em;line-height:1.5;display:block;font-weight:400;color:#636366;color:var(--quaternary-label)}dd code,li code,p code{font-size:smaller;color:#3c3c43;color:var(--secondary-label)}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-size:1em;background-repeat:no-repeat;background-position:left .25em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{margin-bottom:1em;padding-bottom:1em;border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);padding-left:2em!important}section>[role=article]:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:none}dl dt[class],nav li[class]{list-style:none;text-indent:-1em;margin-bottom:.5em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:var(--icon-associatedtype);--link:var(--system-pink)}.case,.enumeration_case{--background-image:var(--icon-case);--link:var(--system-teal)}.class{--background-image:var(--icon-class);--link:var(--system-indigo)}.enumeration{--background-image:var(--icon-enumeration)}.enumeration,.extension{--link:var(--system-orange)}.extension{--background-image:var(--icon-extension)}.function{--background-image:var(--icon-function);--link:var(--system-green)}.initializer,.method{--background-image:var(--icon-method);--link:var(--system-blue)}.property{--background-image:var(--icon-property);--link:var(--system-teal)}.protocol{--background-image:var(--icon-protocol);--link:var(--system-pink)}.structure{--background-image:var(--icon-structure);--link:var(--system-purple)}.typealias{--background-image:var(--icon-typealias)}.typealias,.variable{--link:var(--system-green)}.variable{--background-image:var(--icon-variable)}.unknown{--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file +:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0130 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 110-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0170 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 11.05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-operator:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Ccircle fill='%23fff' cx='50' cy='50' r='16'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 011.92.35V65a5.69 5.69 0 00-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71L19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{margin:0 .5em .2em 0;vertical-align:middle;display:inline-block}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:.4em}:matches(h1,h2,h3,h4,h5,h6)+:matches(h1,h2,h3,h4,h5,h6){margin-top:.4em}:is(p,ul,ol)+:is(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:matches(p,ul,ol)+:matches(h1,h2,h3,h4,h5,h6){margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-feature-settings:"smcp";font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{margin:0;list-style:none}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border-radius:4px;border:1px solid #e5e5ea;border:1px solid var(--separator);color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input [type=email]:focus,input[type=number],input [type=number]:focus,input[type=password],input [type=password]:focus,input[type=tel],input [type=tel]:focus,input[type=text],input [type=text]:focus,input[type=url],input [type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}:-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border-radius:4px;border:none;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;outline:0;box-shadow:0 0 0 3px rgba(0,136,204,.3);z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{width:100%;font:300 11pt/13pt sans-serif;font:var(--caption-1);caption-side:bottom;margin-bottom:2em}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{width:90vw;max-width:1280px;margin:1em auto}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{text-transform:uppercase;font-size:small;font-weight:300;letter-spacing:.1ch}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;padding:1em 0;font:300 11pt/13pt sans-serif;font:var(--caption-1)}@media screen and (max-width:768px){body{width:96vw;max-width:100%}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);text-align:left;padding:1em 0}body>nav{display:none}body>main{padding:0 1em}}@media screen and (max-width:768px){#relationships figure{display:none}section>[role=article][class] pre{margin-left:-1em;margin-right:-1em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;overflow:auto;padding:0 1em 3em;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-left:2em;margin-bottom:1em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:.75em;margin-bottom:2em;overflow-x:auto;text-indent:-2em;padding:1em 1em 1em 3em;white-space:pre-wrap}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{text-decoration:underline;color:#8e8e93;color:var(--placeholder-text)}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{max-width:100%;height:auto!important;margin:0 auto;display:block}h1 small{font-size:.5em;line-height:1.5;display:block;font-weight:400;color:#636366;color:var(--quaternary-label)}h3 small{color:#48484a;color:var(--tertiary-label)}dd code,li code,p code{font-size:smaller;color:#3c3c43;color:var(--secondary-label)}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-size:1em;background-repeat:no-repeat;background-position:left .25em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{margin-bottom:1em;padding-bottom:1em;border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);padding-left:2em!important}section>[role=article]:last-of-type{margin-bottom:0;padding-bottom:0;border-bottom:none}dl dt[class],nav li[class]{list-style:none;text-indent:-1em;margin-bottom:.5em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:var(--icon-associatedtype);--link:var(--system-pink)}.case,.enumeration_case{--background-image:var(--icon-case);--link:var(--system-teal)}.class{--background-image:var(--icon-class);--link:var(--system-indigo)}.enumeration{--background-image:var(--icon-enumeration)}.enumeration,.extension{--link:var(--system-orange)}.extension{--background-image:var(--icon-extension)}.function{--background-image:var(--icon-function);--link:var(--system-green)}.initializer,.method{--background-image:var(--icon-method);--link:var(--system-blue)}.operator{--background-image:var(--icon-operator);--link:var(--system-green)}.property{--background-image:var(--icon-property);--link:var(--system-teal)}.protocol{--background-image:var(--icon-protocol);--link:var(--system-pink)}.structure{--background-image:var(--icon-structure);--link:var(--system-purple)}.typealias{--background-image:var(--icon-typealias)}.typealias,.variable{--link:var(--system-green)}.variable{--background-image:var(--icon-variable)}.unknown{--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index fe1990b00..fc08cf348 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -37,13 +37,15 @@

get​JSValue(this:​index:​)

-
public func getJSValue(this: JSObject, index: Int32) -> JSValue
+
+
public func getJSValue(this: JSObject, index: Int32) -> JSValue 
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 903895fbb..94fbc7c3f 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -37,13 +37,15 @@

get​JSValue(this:​name:​)

-
public func getJSValue(this: JSObject, name: JSString) -> JSValue
+
+
public func getJSValue(this: JSObject, name: JSString) -> JSValue 
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/index.html b/index.html index d4272564f..c67d94248 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,7 @@ @@ -382,12 +382,97 @@

Functions

+
+

Extensions

+
+
+ Array +
+
+
+ Bool +
+
+
+ Dictionary +
+
+
+ Double +
+
+
+ Float +
+
+
+ Float32 +
+
+
+ Float64 +
+
+
+ Int +
+
+
+ Int16 +
+
+
+ Int32 +
+
+
+ Int64 +
+
+
+ Int8 +
+
+
+ Optional +
+
+
+ RawJSValue +
+
+
+ String +
+
+
+ UInt +
+
+
+ UInt16 +
+
+
+ UInt32 +
+
+
+ UInt64 +
+
+
+ UInt8 +
+
+
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 44c3ae70c..2aceb692f 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -37,13 +37,15 @@

set​JSValue(this:​index:​value:​)

-
public func setJSValue(this: JSObject, index: Int32, value: JSValue)
+
+
public func setJSValue(this: JSObject, index: Int32, value: JSValue) 
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index a899eecd3..76527879c 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -37,13 +37,15 @@

set​JSValue(this:​name:​value:​)

-
public func setJSValue(this: JSObject, name: JSString, value: JSValue)
+
+
public func setJSValue(this: JSObject, name: JSString, value: JSValue) 
+

- Generated on using swift-doc 1.0.0-beta.5. + Generated on using swift-doc 1.0.0-beta.6.

From 7d6d597774deb9ee9500079aa290f9a879638c74 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 29 Apr 2021 16:41:32 +0000 Subject: [PATCH 067/148] deploy: b19e7c8b10a2750ed47753e31ed13613171f3294 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++++----- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 90 ++++++++++++------------ JSBridgedType/index.html | 50 ++++++------- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 ++++----- JSDate/index.html | 38 +++++----- JSError/index.html | 12 ++-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 82 ++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++----- JSPromise/index.html | 6 +- JSString/index.html | 54 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 90 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this:index:)/index.html | 2 +- getJSValue(this:name:)/index.html | 2 +- index.html | 2 +- setJSValue(this:index:value:)/index.html | 2 +- setJSValue(this:name:value:)/index.html | 2 +- 54 files changed, 337 insertions(+), 337 deletions(-) diff --git a/Array/index.html b/Array/index.html index 6d946c755..527d14bd9 100644 --- a/Array/index.html +++ b/Array/index.html @@ -69,7 +69,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Bool/index.html b/Bool/index.html index 183c5e345..20db5e558 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 12afed32e..a4a16a0ab 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%135 @@ -67,33 +67,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -160,7 +160,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index bd2680a39..cd2d21dbd 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%55 @@ -77,7 +77,7 @@ - + JSString->ConvertibleToJSValue @@ -92,7 +92,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -137,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 2bcbbb8b8..b0e3796bd 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -69,7 +69,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Double/index.html b/Double/index.html index ecd6e77a5..ec32307a6 100644 --- a/Double/index.html +++ b/Double/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Float/index.html b/Float/index.html index fc534f49b..424ac07f4 100644 --- a/Float/index.html +++ b/Float/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Float32/index.html b/Float32/index.html index 5af2df434..7e7d44b8a 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -53,7 +53,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Float64/index.html b/Float64/index.html index 61af59873..4854fc4eb 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -53,7 +53,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Int/index.html b/Int/index.html index 64d53261d..64f0f5f22 100644 --- a/Int/index.html +++ b/Int/index.html @@ -74,7 +74,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Int16/index.html b/Int16/index.html index 2ca80648a..9fb4c129c 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Int32/index.html b/Int32/index.html index bd1b96b98..df6bfdfbf 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Int64/index.html b/Int64/index.html index 71b7cff9c..497e8289d 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Int8/index.html b/Int8/index.html index 54b1f0e22..1513940dd 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSArray/index.html b/JSArray/index.html index 4bd029dc2..67c495285 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%95 @@ -78,7 +78,7 @@
- + JSArray->JSBridgedClass @@ -90,7 +90,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -272,7 +272,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 577181a9c..1a596f55e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 8193a3066..573f61ff6 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -48,11 +48,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%23 @@ -113,7 +113,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e9d05c738..a479acb15 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%9 @@ -68,47 +68,47 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - + -JSTypedArray->JSBridgedClass +JSError->JSBridgedClass @@ -122,40 +122,40 @@ - + JSDate->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSPromise - - -JSPromise + + +JSArray + + +JSArray - - -JSPromise->JSBridgedClass - - + + +JSArray->JSBridgedClass + + @@ -281,7 +281,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index f45de19c9..72ccd0306 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%67 @@ -68,44 +68,44 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - - -JSBridgedType->CustomStringConvertible - - + + +JSBridgedType->JSValueCompatible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -188,7 +188,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e01fac517..1cdeea60e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -70,11 +70,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%89 @@ -178,7 +178,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index bc50df0b2..72675e535 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%107 @@ -68,16 +68,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + @@ -89,25 +89,25 @@ - + JSOneshotClosure->JSClosureProtocol - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSDate/index.html b/JSDate/index.html index 31b2ea433..a208e289f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -58,11 +58,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%79 @@ -73,30 +73,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -502,7 +502,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSError/index.html b/JSError/index.html index 9c5f687d2..1f29662d8 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -54,11 +54,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%127 @@ -76,7 +76,7 @@ CustomStringConvertible
- + JSError->CustomStringConvertible @@ -91,7 +91,7 @@ - + JSError->JSBridgedClass @@ -103,7 +103,7 @@ Error - + JSError->Error @@ -247,7 +247,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSFunction/index.html b/JSFunction/index.html index e9909c093..2b198a993 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -61,11 +61,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%75 @@ -287,7 +287,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 491d0ba72..f69056070 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSObject/index.html b/JSObject/index.html index 986aff1fc..23562fe44 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -67,11 +67,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%115 @@ -83,74 +83,74 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable JSObject->Equatable - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - + + - + -JSFunction - +JSClosure + -JSFunction +JSClosure - + -JSFunction->JSObject +JSClosure->JSObject - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSObject +JSOneshotClosure->JSObject + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + @@ -334,7 +334,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 610a945ce..e562ac99c 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index b9594151e..4ec2780d1 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%101 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -155,7 +155,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 053b0df9f..01043abfd 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%85 @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSString/index.html b/JSString/index.html index a9890e524..c81376c54 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -64,11 +64,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%27 @@ -79,15 +79,18 @@
- - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConstructibleFromJSValue @@ -98,35 +101,32 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -140,7 +140,7 @@ - + JSString->ConvertibleToJSValue @@ -274,7 +274,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index f812b50d7..b161d0ffb 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -186,7 +186,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 750072c46..42aa17fac 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -67,7 +67,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 50b15a3ba..ab065c61c 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -127,7 +127,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 855b46a64..198ae7a0a 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%61 @@ -232,7 +232,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValue/index.html b/JSValue/index.html index b0b5cb0fc..a1da51d84 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%39 @@ -68,87 +68,87 @@
- + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral @@ -517,7 +517,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index d5cd0a9a3..3635811ec 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 34ef6ae8d..eddb58838 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index fc88d3222..6d27b1f60 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 343593c77..ecde6d9ec 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -46,7 +46,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a6486f2f7..14df6f6d6 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -114,7 +114,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/Optional/index.html b/Optional/index.html index 96305fdc6..46ec0e7b4 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index f340919d3..eae1bfffd 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -53,7 +53,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/String/index.html b/String/index.html index 332ca224e..8fd3ab07a 100644 --- a/String/index.html +++ b/String/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index fa041d462..67709b672 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%3 @@ -67,33 +67,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -137,7 +137,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt/index.html b/UInt/index.html index a1b5a1e00..d65006582 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -74,7 +74,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt16/index.html b/UInt16/index.html index 6b52a9944..44fbb8809 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt32/index.html b/UInt32/index.html index 9477805a3..62807e4d9 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt64/index.html b/UInt64/index.html index 160e76924..62368558e 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/UInt8/index.html b/UInt8/index.html index 3199ad6f3..aaeae37f9 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/getJSValue(this:index:)/index.html b/getJSValue(this:index:)/index.html index fc08cf348..b0e46d090 100644 --- a/getJSValue(this:index:)/index.html +++ b/getJSValue(this:index:)/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/getJSValue(this:name:)/index.html b/getJSValue(this:name:)/index.html index 94fbc7c3f..0394230f3 100644 --- a/getJSValue(this:name:)/index.html +++ b/getJSValue(this:name:)/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/index.html b/index.html index c67d94248..9e1249c0d 100644 --- a/index.html +++ b/index.html @@ -472,7 +472,7 @@

Extensions

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/setJSValue(this:index:value:)/index.html b/setJSValue(this:index:value:)/index.html index 2aceb692f..c89ff9012 100644 --- a/setJSValue(this:index:value:)/index.html +++ b/setJSValue(this:index:value:)/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

diff --git a/setJSValue(this:name:value:)/index.html b/setJSValue(this:name:value:)/index.html index 76527879c..32f7856a1 100644 --- a/setJSValue(this:name:value:)/index.html +++ b/setJSValue(this:name:value:)/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-beta.6.

From 2bb8684b1f4699053fc79d6b1715854897348509 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 18 Jul 2021 23:44:48 +0000 Subject: [PATCH 068/148] deploy: 7f41fb4fec190fed2cd2831e5c46b501e2d0da11 --- Array/index.html | 15 +- Bool/index.html | 11 +- ConstructibleFromJSValue/index.html | 11 +- ConvertibleToJSValue/index.html | 43 ++-- Dictionary/index.html | 15 +- Double/index.html | 11 +- Float/index.html | 11 +- Float32/index.html | 7 +- Float64/index.html | 7 +- Int/index.html | 17 +- Int16/index.html | 15 +- Int32/index.html | 15 +- Int64/index.html | 11 +- Int8/index.html | 15 +- JSArray/index.html | 83 ++++---- JSArrayRef/index.html | 7 +- JSArray_Iterator/index.html | 13 +- JSBridgedClass/index.html | 101 +++++---- JSBridgedType/index.html | 51 +++-- JSClosure/index.html | 23 +- JSClosureProtocol/index.html | 39 ++-- JSDate/index.html | 135 ++++++------ JSError/index.html | 81 ++++--- JSFunction/index.html | 47 ++--- JSFunctionRef/index.html | 7 +- JSObject/index.html | 97 +++++---- JSObjectRef/index.html | 7 +- JSOneshotClosure/index.html | 17 +- JSPromise/index.html | 71 ++++--- JSString/index.html | 73 ++++--- JSThrowingFunction/index.html | 29 ++- JSThrowingObject/index.html | 11 +- JSTimer/index.html | 13 +- JSTypedArray/index.html | 69 +++--- JSValue/index.html | 197 +++++++++--------- JSValueCodable/index.html | 7 +- JSValueCompatible/index.html | 5 +- JSValueConstructible/index.html | 7 +- JSValueConvertible/index.html | 7 +- JSValueDecoder/index.html | 17 +- Optional/index.html | 11 +- RawJSValue/index.html | 7 +- String/index.html | 11 +- TypedArrayElement/index.html | 15 +- UInt/index.html | 17 +- UInt16/index.html | 15 +- UInt32/index.html | 15 +- UInt64/index.html | 11 +- UInt8/index.html | 15 +- all.css | 2 +- .../index.html | 5 +- .../index.html | 5 +- index.html | 11 +- .../index.html | 5 +- .../index.html | 5 +- 55 files changed, 757 insertions(+), 811 deletions(-) rename {getJSValue(this:index:) => getJSValue(this_index_)}/index.html (60%) rename {getJSValue(this:name:) => getJSValue(this_name_)}/index.html (59%) rename {setJSValue(this:index:value:) => setJSValue(this_index_value_)}/index.html (60%) rename {setJSValue(this:name:value:) => setJSValue(this_name_value_)}/index.html (58%) diff --git a/Array/index.html b/Array/index.html index 527d14bd9..10783b900 100644 --- a/Array/index.html +++ b/Array/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%135 +%57 @@ -124,7 +123,7 @@

construct(from:​)

-
static func construct(from value: JSValue) -> Self?
+
static func construct(from value: JSValue) -> Self? 

Construct an instance of Self, if possible, from the given JSValue. @@ -160,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index cd2d21dbd..e62a03e95 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%55 +%9 @@ -67,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -124,7 +123,7 @@

js​Value()

-
func jsValue() -> JSValue
+
func jsValue() -> JSValue

Create a JSValue that represents this object

@@ -137,7 +136,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b0e3796bd..b1985f4c7 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%95 +%3 @@ -68,30 +67,30 @@

- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -119,10 +118,10 @@

Nested Type Aliases

- Element + Element

-
public typealias Element = JSValue
+
public typealias Element = JSValue

@@ -131,18 +130,18 @@

Initializers

- init?(from:​) + init?(from:​)

-
public required convenience init?(from value: JSValue) 
+
public required convenience init?(from value: JSValue)  

- init?(_:​) + init?(_:​)

-
public convenience init?(_ jsObject: JSObject) 
+
public convenience init?(_ jsObject: JSObject)  

Construct a JSArray from Array JSObject. @@ -171,10 +170,10 @@

Parameters

- init(unsafely​Wrapping:​) + init(unsafely​Wrapping:​)

-
public required init(unsafelyWrapping jsObject: JSObject) 
+
public required init(unsafelyWrapping jsObject: JSObject)  
@@ -183,42 +182,42 @@

Properties

- constructor + constructor

-
public static let constructor = JSObject.global.Array.function!
+
public static let constructor = JSObject.global.Array.function! 

- js​Object + js​Object

-
public let jsObject: JSObject
+
public let jsObject: JSObject

- start​Index + start​Index

-
public var startIndex: Int 
+
public var startIndex: Int  

- end​Index + end​Index

-
public var endIndex: Int 
+
public var endIndex: Int  

- length + length

-
public var length: Int 
+
public var length: Int  

The number of elements in that array including empty hole. @@ -239,10 +238,10 @@

- count + count

-
public var count: Int 
+
public var count: Int  

The number of elements in that array not including empty hole. @@ -257,10 +256,10 @@

Methods

- make​Iterator() + make​Iterator()

-
public func makeIterator() -> Iterator 
+
public func makeIterator() -> Iterator  
@@ -272,7 +271,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 1a596f55e..e26ae81e6 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%23 +%121 @@ -98,10 +97,10 @@

Methods

- next() + next()

-
public func next() -> Element? 
+
public func next() -> Element?  
@@ -113,7 +112,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a479acb15..5222e2dc8 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%9 +%83 @@ -77,83 +76,83 @@

- + JSBridgedClass->JSBridgedType - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -209,26 +208,26 @@

Default Implementations

- value + value

-
public var value: JSValue 
+
public var value: JSValue  

- init?(from:​) + init?(from:​)

-
public init?(from value: JSValue) 
+
public init?(from value: JSValue)  

- init?(from:​) + init?(from:​)

-
public init?(from object: JSObject) 
+
public init?(from object: JSObject)  
@@ -242,7 +241,7 @@

constructor

-
static var constructor: JSFunction 
+
static var constructor: JSFunction  

The constructor function for the JavaScript class

@@ -254,7 +253,7 @@

js​Object

-
var jsObject: JSObject 
+
var jsObject: JSObject  

The JavaScript object wrapped by this instance. @@ -267,7 +266,7 @@

init(unsafely​Wrapping:​)

-
init(unsafelyWrapping jsObject: JSObject)
+
init(unsafelyWrapping jsObject: JSObject) 

Create an instance wrapping the given JavaScript object. @@ -281,7 +280,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 72ccd0306..66aeffff3 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%67 +%49 @@ -75,37 +74,37 @@

CustomStringConvertible - + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -130,26 +129,26 @@

Default Implementations

- construct(from:​) + construct(from:​)

-
public static func construct(from value: JSValue) -> Self? 
+
public static func construct(from value: JSValue) -> Self?  

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  

- description + description

-
public var description: String 
+
public var description: String  
@@ -163,7 +162,7 @@

value

-
var value: JSValue 
+
var value: JSValue  

This is the value your class wraps.

@@ -175,7 +174,7 @@

init?(from:​)

-
init?(from value: JSValue)
+
init?(from value: JSValue) 

If your class is incompatible with the provided value, return nil.

@@ -188,7 +187,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1cdeea60e..d307a878f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%89 +%115 @@ -141,20 +140,20 @@

Initializers

- init(_:​) + init(_:​)

-
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure")
+
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure")
     @_disfavoredOverload
-    public convenience init(_ body: @escaping ([JSValue]) -> ()) 
+ public convenience init(_ body: @escaping ([JSValue]) -> ())

- init(_:​) + init(_:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue) 
+
public init(_ body: @escaping ([JSValue]) -> JSValue)  
@@ -163,10 +162,10 @@

Methods

- release() + release()

-
public func release() 
+
public func release()  
@@ -178,7 +177,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 72675e535..cc4ea6517 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%107 +%35 @@ -68,16 +67,16 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + @@ -89,25 +88,25 @@ - + JSOneshotClosure->JSClosureProtocol - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -144,7 +143,7 @@

release()

-
func release()
+
func release() 

Release this function resource. @@ -158,7 +157,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index a208e289f..f24f84e1a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%79 +%97 @@ -80,7 +79,7 @@

Comparable - + JSDate->Comparable @@ -95,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -119,10 +118,10 @@

Initializers

- init(milliseconds​Since​Epoch:​) + init(milliseconds​Since​Epoch:​)

-
public init(millisecondsSinceEpoch: Double? = nil) 
+
public init(millisecondsSinceEpoch: Double? = nil)  

Creates a new instance of the JavaScript Date class with a given amount of milliseconds @@ -132,10 +131,10 @@

- init(year:​month​Index:​day:​hours:​minutes:​seconds:​milliseconds:​) + init(year:​month​Index:​day:​hours:​minutes:​seconds:​milliseconds:​)

-
public init(
+
public init(
         year: Int,
         monthIndex: Int,
         day: Int = 1,
@@ -143,7 +142,7 @@ 

minutes: Int = 0, seconds: Int = 0, milliseconds: Int = 0 - )

+ )

According to the standard, monthIndex is zero-indexed, where 11 is December. day @@ -153,10 +152,10 @@

- init(unsafely​Wrapping:​) + init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping jsObject: JSObject) 
+
public init(unsafelyWrapping jsObject: JSObject)  
@@ -165,10 +164,10 @@

Properties

- constructor + constructor

-
public static let constructor = JSObject.global.Date.function!
+
public static let constructor = JSObject.global.Date.function! 

The constructor function used to create new Date objects.

@@ -177,10 +176,10 @@

- js​Object + js​Object

-
public let jsObject: JSObject
+
public let jsObject: JSObject

The underlying JavaScript Date object.

@@ -189,10 +188,10 @@

- full​Year + full​Year

-
public var fullYear: Int 
+
public var fullYear: Int  

Year of this date in local time zone.

@@ -201,10 +200,10 @@

- month + month

-
public var month: Int 
+
public var month: Int  

Month of this date in 0–11 range in local time zone.

@@ -213,10 +212,10 @@

- date + date

-
public var date: Int 
+
public var date: Int  

The day of the month in 1..31 range in local time zone.

@@ -225,10 +224,10 @@

- day + day

-
public var day: Int 
+
public var day: Int  

The day of the week in 0..6 range in local time zone.

@@ -237,10 +236,10 @@

- hours + hours

-
public var hours: Int 
+
public var hours: Int  

The amount of hours in this day from 0..23 range in local time zone.

@@ -249,10 +248,10 @@

- minutes + minutes

-
public var minutes: Int 
+
public var minutes: Int  

The amount of minutes in this hours from 0..59 range in local time zone.

@@ -261,10 +260,10 @@

- seconds + seconds

-
public var seconds: Int 
+
public var seconds: Int  

The amount of seconds in this minute from 0..59 range in local time zone.

@@ -273,10 +272,10 @@

- milliseconds + milliseconds

-
public var milliseconds: Int 
+
public var milliseconds: Int  

The amount of milliseconds in this second 0..999 range in local time zone.

@@ -285,10 +284,10 @@

- utc​Full​Year + utc​Full​Year

-
public var utcFullYear: Int 
+
public var utcFullYear: Int  

Year of this date in the UTC time zone.

@@ -297,10 +296,10 @@

- utc​Month + utc​Month

-
public var utcMonth: Int 
+
public var utcMonth: Int  

Month of this date in 0–11 range in the UTC time zone.

@@ -309,10 +308,10 @@

- utc​Date + utc​Date

-
public var utcDate: Int 
+
public var utcDate: Int  

The day of the month in 1..31 range in the UTC time zone.

@@ -321,10 +320,10 @@

- utc​Day + utc​Day

-
public var utcDay: Int 
+
public var utcDay: Int  

The day of the week in 0..6 range in the UTC time zone.

@@ -333,10 +332,10 @@

- utc​Hours + utc​Hours

-
public var utcHours: Int 
+
public var utcHours: Int  

The amount of hours in this day from 0..23 range in the UTC time zone.

@@ -345,10 +344,10 @@

- utc​Minutes + utc​Minutes

-
public var utcMinutes: Int 
+
public var utcMinutes: Int  

The amount of minutes in this hours from 0..59 range in the UTC time zone.

@@ -357,10 +356,10 @@

- utc​Seconds + utc​Seconds

-
public var utcSeconds: Int 
+
public var utcSeconds: Int  

The amount of seconds in this minute from 0..59 range in the UTC time zone.

@@ -369,10 +368,10 @@

- utc​Milliseconds + utc​Milliseconds

-
public var utcMilliseconds: Int 
+
public var utcMilliseconds: Int  

The amount of milliseconds in this second 0..999 range in the UTC time zone.

@@ -381,10 +380,10 @@

- timezone​Offset + timezone​Offset

-
public var timezoneOffset: Int 
+
public var timezoneOffset: Int  

Offset in minutes between the local time zone and UTC.

@@ -397,10 +396,10 @@

Methods

- to​ISOString() + to​ISOString()

-
public func toISOString() -> String 
+
public func toISOString() -> String  

Returns a string conforming to ISO 8601 that contains date and time, e.g. @@ -410,10 +409,10 @@

- to​Locale​Date​String() + to​Locale​Date​String()

-
public func toLocaleDateString() -> String 
+
public func toLocaleDateString() -> String  

Returns a string with date parts in a format defined by user's locale, e.g. "9/15/2020".

@@ -422,10 +421,10 @@

- to​Locale​Time​String() + to​Locale​Time​String()

-
public func toLocaleTimeString() -> String 
+
public func toLocaleTimeString() -> String  

Returns a string with time parts in a format defined by user's locale, e.g. "10:04:14".

@@ -434,10 +433,10 @@

- to​UTCString() + to​UTCString()

-
public func toUTCString() -> String 
+
public func toUTCString() -> String  

Returns a string formatted according to @@ -449,10 +448,10 @@

- now() + now()

-
public static func now() -> Double 
+
public static func now() -> Double  

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring @@ -462,10 +461,10 @@

- value​Of() + value​Of()

-
public func valueOf() -> Double 
+
public func valueOf() -> Double  

Number of milliseconds since midnight 01 January 1970 UTC to the given date ignoring leap @@ -479,18 +478,18 @@

Operators

- == + ==

-
public static func == (lhs: JSDate, rhs: JSDate) -> Bool 
+
public static func == (lhs: JSDate, rhs: JSDate) -> Bool  

- < + <

-
public static func < (lhs: JSDate, rhs: JSDate) -> Bool 
+
public static func < (lhs: JSDate, rhs: JSDate) -> Bool  
@@ -502,7 +501,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 1f29662d8..67d190864 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%127 +%27 @@ -69,30 +68,30 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -103,7 +102,7 @@ Error - + JSError->Error @@ -128,10 +127,10 @@

Initializers

- init(message:​) + init(message:​)

-
public init(message: String) 
+
public init(message: String)  

Creates a new instance of the JavaScript Error class with a given message.

@@ -140,10 +139,10 @@

- init(unsafely​Wrapping:​) + init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping jsObject: JSObject) 
+
public init(unsafelyWrapping jsObject: JSObject)  
@@ -152,10 +151,10 @@

Properties

- constructor + constructor

-
public static let constructor = JSObject.global.Error.function!
+
public static let constructor = JSObject.global.Error.function! 

The constructor function used to create new JavaScript Error objects.

@@ -164,10 +163,10 @@

- js​Object + js​Object

-
public let jsObject: JSObject
+
public let jsObject: JSObject

The underlying JavaScript Error object.

@@ -176,10 +175,10 @@

- message + message

-
public var message: String 
+
public var message: String  

The error message of the underlying Error object.

@@ -188,10 +187,10 @@

- name + name

-
public var name: String 
+
public var name: String  

The name (usually corresponds to the name of the underlying class) of a given error.

@@ -200,10 +199,10 @@

- stack + stack

-
public var stack: String? 
+
public var stack: String?  

The JavaScript call stack that led to the creation of this error object.

@@ -212,10 +211,10 @@

- description + description

-
public var description: String 
+
public var description: String  

The textual representation of this error.

@@ -228,10 +227,10 @@

Methods

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  

Creates a new JSValue from this JSError instance.

@@ -247,7 +246,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 2b198a993..c46cf94a6 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%75 +%125 @@ -111,10 +110,10 @@

Properties

- `throws` + `throws`

-
public var `throws`: JSThrowingFunction 
+
public var `throws`: JSThrowingFunction  

A modifier to call this function as a throwing function

@@ -139,11 +138,11 @@

Methods

- call​AsFunction(this:​arguments:​) + call​AsFunction(this:​arguments:​)

-
@discardableResult
-    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue 
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue  

Call this function with given arguments and binding given this as context.

@@ -180,11 +179,11 @@

Returns

- call​AsFunction(this:​_:​) + call​AsFunction(this:​_:​)

-
@discardableResult
-    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) -> JSValue 
+
@discardableResult
+    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) -> JSValue  

A variadic arguments version of callAsFunction.

@@ -193,10 +192,10 @@

- new(arguments:​) + new(arguments:​)

-
public func new(arguments: [ConvertibleToJSValue]) -> JSObject 
+
public func new(arguments: [ConvertibleToJSValue]) -> JSObject  

Instantiate an object from this function as a constructor.

@@ -243,10 +242,10 @@

Returns

- new(_:​) + new(_:​)

-
public func new(_ arguments: ConvertibleToJSValue...) -> JSObject 
+
public func new(_ arguments: ConvertibleToJSValue...) -> JSObject  

A variadic arguments version of new.

@@ -255,27 +254,27 @@

- from(_:​) + from(_:​)

-
@available(*, unavailable, message: "Please use JSClosure instead")
-    public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction 
+
@available(*, unavailable, message: "Please use JSClosure instead")
+    public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction  

- construct(from:​) + construct(from:​)

-
public override class func construct(from value: JSValue) -> Self? 
+
public override class func construct(from value: JSValue) -> Self?  

- js​Value() + js​Value()

-
override public func jsValue() -> JSValue 
+
override public func jsValue() -> JSValue  
@@ -287,7 +286,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f69056070..dd4bb7523 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%115 +%15 @@ -95,59 +94,59 @@

- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - + -JSClosure->JSObject - - +JSOneshotClosure->JSObject + + - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject - + -JSFunction - +JSClosure + -JSFunction +JSClosure - + -JSFunction->JSObject +JSClosure->JSObject @@ -185,10 +184,10 @@

Properties

- `throwing` + `throwing`

-
public var `throwing`: JSThrowingObject 
+
public var `throwing`: JSThrowingObject  

A modifier to call methods as throwing methods capturing this

@@ -211,10 +210,10 @@

- global + global

-
public static let global 
+
public static let global  

A JSObject of the global scope object. @@ -224,10 +223,10 @@

- description + description

-
public var description: String 
+
public var description: String  
@@ -236,10 +235,10 @@

Methods

- is​Instance​Of(_:​) + is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool 
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function.

@@ -270,18 +269,18 @@

Returns

- construct(from:​) + construct(from:​)

-
public class func construct(from value: JSValue) -> Self? 
+
public class func construct(from value: JSValue) -> Self?  

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  
@@ -290,10 +289,10 @@

Operators

- == + ==

-
public static func == (lhs: JSObject, rhs: JSObject) -> Bool 
+
public static func == (lhs: JSObject, rhs: JSObject) -> Bool  

Returns a Boolean value indicating whether two values point to same objects.

@@ -334,7 +333,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e562ac99c..cf6647e95 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%101 +%103 @@ -123,10 +122,10 @@

Initializers

- init(_:​) + init(_:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue) 
+
public init(_ body: @escaping ([JSValue]) -> JSValue)  
@@ -135,10 +134,10 @@

Methods

- release() + release()

-
public func release() 
+
public func release()  

Release this function resource. @@ -155,7 +154,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 01043abfd..23347ff23 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%85 +%63 @@ -111,10 +110,10 @@

Initializers

- init(unsafely​Wrapping:​) + init(unsafely​Wrapping:​)

-
public init(unsafelyWrapping object: JSObject) 
+
public init(unsafelyWrapping object: JSObject)  

This private initializer assumes that the passed object is a JavaScript Promise

@@ -123,10 +122,10 @@

- init?(_:​) + init?(_:​)

-
public convenience init?(_ jsObject: JSObject) 
+
public convenience init?(_ jsObject: JSObject)  

Creates a new JSPromise instance from a given JavaScript Promise object. If jsObject @@ -136,10 +135,10 @@

- init(resolver:​) + init(resolver:​)

-
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ()) 
+
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ())  

Creates a new JSPromise instance from a given resolver closure. resolver takes @@ -153,10 +152,10 @@

Properties

- js​Object + js​Object

-
public let jsObject: JSObject
+
public let jsObject: JSObject

The underlying JavaScript Promise object.

@@ -165,10 +164,10 @@

- constructor + constructor

-
public static var constructor: JSFunction 
+
public static var constructor: JSFunction  
@@ -177,10 +176,10 @@

Methods

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  

The underlying JavaScript Promise object wrapped as JSValue.

@@ -189,10 +188,10 @@

- construct(from:​) + construct(from:​)

-
public static func construct(from value: JSValue) -> Self? 
+
public static func construct(from value: JSValue) -> Self?  

Creates a new JSPromise instance from a given JavaScript Promise object. If value @@ -203,27 +202,27 @@

- resolve(_:​) + resolve(_:​)

-
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise 
+
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise  

- reject(_:​) + reject(_:​)

-
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise 
+
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise  

- then(success:​) + then(success:​)

-
@discardableResult
-    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+
@discardableResult
+    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  

Schedules the success closure to be invoked on sucessful completion of self.

@@ -232,12 +231,12 @@

- then(success:​failure:​) + then(success:​failure:​)

-
@discardableResult
-    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue,
-                     failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+
@discardableResult
+    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue,
+                     failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  

Schedules the success closure to be invoked on sucessful completion of self.

@@ -246,11 +245,11 @@

- `catch`(failure:​) + `catch`(failure:​)

-
@discardableResult
-    public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise 
+
@discardableResult
+    public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  

Schedules the failure closure to be invoked on rejected completion of self.

@@ -259,11 +258,11 @@

- finally(success​OrFailure:​) + finally(success​OrFailure:​)

-
@discardableResult
-    public func finally(successOrFailure: @escaping () -> ()) -> JSPromise 
+
@discardableResult
+    public func finally(successOrFailure: @escaping () -> ()) -> JSPromise  

Schedules the failure closure to be invoked on either successful or rejected completion of @@ -280,7 +279,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index c81376c54..89ded7b2d 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%27 +%129 @@ -79,18 +78,15 @@

- - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -101,20 +97,23 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue @@ -125,7 +124,7 @@ Equatable - + JSString->Equatable @@ -140,7 +139,7 @@ - + JSString->ConvertibleToJSValue @@ -169,10 +168,10 @@

Initializers

- init(_:​) + init(_:​)

-
public init(_ stringValue: String) 
+
public init(_ stringValue: String)  

Instantiate a new JSString with given Swift.String.

@@ -181,10 +180,10 @@

- init(string​Literal:​) + init(string​Literal:​)

-
public init(stringLiteral value: String) 
+
public init(stringLiteral value: String)  
@@ -193,10 +192,10 @@

Properties

- description + description

-
public var description: String 
+
public var description: String  

A Swift representation of this JSString. @@ -210,18 +209,18 @@

Methods

- construct(from:​) + construct(from:​)

-
public static func construct(from value: JSValue) -> JSString? 
+
public static func construct(from value: JSValue) -> JSString?  

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  
@@ -230,10 +229,10 @@

Operators

- == + ==

-
public static func == (lhs: JSString, rhs: JSString) -> Bool 
+
public static func == (lhs: JSString, rhs: JSString) -> Bool  

Returns a Boolean value indicating whether two strings are equal values.

@@ -274,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index b161d0ffb..d5073f756 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%61 +%43 @@ -68,30 +67,30 @@ + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -114,10 +113,10 @@

Initializers

- init(length:​) + init(length:​)

-
public init(length: Int) 
+
public init(length: Int)  

Initialize a new instance of TypedArray in JavaScript environment with given length. @@ -146,26 +145,26 @@

Parameters

- init(unsafely​Wrapping:​) + init(unsafely​Wrapping:​)

-
required public init(unsafelyWrapping jsObject: JSObject) 
+
required public init(unsafelyWrapping jsObject: JSObject)  

- init(array​Literal:​) + init(array​Literal:​)

-
required public convenience init(arrayLiteral elements: Element...) 
+
required public convenience init(arrayLiteral elements: Element...)  

- init(_:​) + init(_:​)

-
public convenience init(_ array: [Element]) 
+
public convenience init(_ array: [Element])  

Initialize a new instance of TypedArray in JavaScript environment with given elements.

@@ -193,10 +192,10 @@

Parameters

- init(_:​) + init(_:​)

-
public convenience init<S: Sequence>(_ sequence: S) 
+
public convenience init<S: Sequence>(_ sequence: S)  

Convenience initializer for Sequence.

@@ -209,18 +208,18 @@

Properties

- constructor + constructor

-
public static var constructor: JSFunction 
+
public static var constructor: JSFunction  

- js​Object + js​Object

-
public var jsObject: JSObject
+
public var jsObject: JSObject
@@ -232,7 +231,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index a1da51d84..934936a1e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%39 +%67 @@ -68,27 +67,27 @@

- + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible @@ -104,51 +103,51 @@ - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -174,34 +173,34 @@

Initializers

- init(string​Literal:​) + init(string​Literal:​)

-
public init(stringLiteral value: String) 
+
public init(stringLiteral value: String)  

- init(integer​Literal:​) + init(integer​Literal:​)

-
public init(integerLiteral value: Int32) 
+
public init(integerLiteral value: Int32)  

- init(float​Literal:​) + init(float​Literal:​)

-
public init(floatLiteral value: Double) 
+
public init(floatLiteral value: Double)  

- init(nil​Literal:​) + init(nil​Literal:​)

-
public init(nilLiteral: ()) 
+
public init(nilLiteral: ())  
@@ -210,58 +209,58 @@

Enumeration Cases

- boolean + boolean

-
case boolean(Bool)
+
case boolean(Bool) 

- string + string

-
case string(JSString)
+
case string(JSString) 

- number + number

-
case number(Double)
+
case number(Double) 

- object + object

-
case object(JSObject)
+
case object(JSObject) 

- null + null

-
case null
+
case null

- undefined + undefined

-
case undefined
+
case undefined

- function + function

-
case function(JSFunction)
+
case function(JSFunction) 
@@ -270,18 +269,18 @@

Properties

- array + array

-
public var array: JSArray? 
+
public var array: JSArray?  

- boolean + boolean

-
public var boolean: Bool? 
+
public var boolean: Bool?  

Returns the Bool value of this JS value if its type is boolean. @@ -291,10 +290,10 @@

- string + string

-
public var string: String? 
+
public var string: String?  

Returns the String value of this JS value if the type is string. @@ -310,10 +309,10 @@

- js​String + js​String

-
public var jsString: JSString? 
+
public var jsString: JSString?  

Returns the JSString value of this JS value if the type is string. @@ -323,10 +322,10 @@

- number + number

-
public var number: Double? 
+
public var number: Double?  

Returns the Double value of this JS value if the type is number. @@ -336,10 +335,10 @@

- object + object

-
public var object: JSObject? 
+
public var object: JSObject?  

Returns the JSObject of this JS value if its type is object. @@ -349,10 +348,10 @@

- function + function

-
public var function: JSFunction? 
+
public var function: JSFunction?  

Returns the JSFunction of this JS value if its type is function. @@ -362,10 +361,10 @@

- is​Null + is​Null

-
public var isNull: Bool 
+
public var isNull: Bool  

Returns the true if this JS value is null. @@ -375,10 +374,10 @@

- is​Undefined + is​Undefined

-
public var isUndefined: Bool 
+
public var isUndefined: Bool  

Returns the true if this JS value is undefined. @@ -388,10 +387,10 @@

- description + description

-
public var description: String 
+
public var description: String  
@@ -400,43 +399,43 @@

Methods

- construct(from:​) + construct(from:​)

-
public static func construct(from value: JSValue) -> Self? 
+
public static func construct(from value: JSValue) -> Self?  

- js​Value() + js​Value()

-
public func jsValue() -> JSValue 
+
public func jsValue() -> JSValue  

- from​JSValue() + from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue 
+
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  

- string(_:​) + string(_:​)

-
public static func string(_ value: String) -> JSValue 
+
public static func string(_ value: String) -> JSValue  

- function(_:​) + function(_:​)

-
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue 
+
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
+    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -466,19 +465,19 @@

- function(_:​) + function(_:​)

-
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    public static func function(_ closure: JSClosure) -> JSValue 
+
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
+    public static func function(_ closure: JSClosure) -> JSValue  

- is​Instance​Of(_:​) + is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool 
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -517,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 3635811ec..674b5c2dd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%3 +%109 @@ -77,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -92,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -124,7 +123,7 @@

typed​Array​Class

-
static var typedArrayClass: JSFunction 
+
static var typedArrayClass: JSFunction  

The constructor function for the TypedArray class for this particular kind of number

@@ -137,7 +136,7 @@

- Generated on using swift-doc 1.0.0-beta.6. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index d65006582..4900ef814 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -14,7 +14,6 @@ Documentation - Beta - + -%57 +%123 @@ -66,33 +66,33 @@

- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e62a03e95..578468818 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%65 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b1985f4c7..11f8b6980 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 1a786d032..caf2bdf36 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 53d2959d2..e9fdc1c7f 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 2cf8f502c..37698a70f 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index de02d6a02..ac2318f70 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8ec275c3b..2909fa6ab 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 65379cb2a..a33eace2b 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 28b1c06b4..38d0f60e5 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 8eb98fd88..5d0c13e5f 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 8382318fb..19404ff3e 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index e06ff929f..a75e37142 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%53 @@ -67,30 +67,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e26ae81e6..348869a5a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9a2bf85a8..6e175670e 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%111 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 5222e2dc8..d381c3911 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%3 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass + + + + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 66aeffff3..6afc20b3e 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%45 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d307a878f..ca9d81db4 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -69,11 +69,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%135 @@ -84,33 +84,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -177,7 +177,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index cc4ea6517..158770a0b 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%29 @@ -67,31 +67,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -103,7 +103,7 @@ - + JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index f24f84e1a..ee2bf17ca 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%71 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 67d190864..7a920b141 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%115 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c46cf94a6..21208e9fb 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%37 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index dd4bb7523..41f1be845 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 3432b467c..4069772a6 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%17 @@ -81,74 +81,74 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + @@ -333,7 +333,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index cf6647e95..9bf803c21 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index ff62814d2..3feffac8d 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%93 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 23347ff23..55f7d2546 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%41 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 89ded7b2d..5f3824842 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%99 @@ -78,69 +78,69 @@
- - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - + -JSString->ConvertibleToJSValue +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index d5073f756..1096c7b59 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 12b3c4fcf..89dcbf5a0 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index aafbfa818..19242ef04 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b4caf257d..23e9ebba5 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%129 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 934936a1e..00e4c24cf 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%77 @@ -67,27 +67,27 @@
- + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -98,56 +98,56 @@ Equatable - + JSValue->Equatable - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 674b5c2dd..7b0722046 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index d24f3c7f7..c582acb4f 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 40296c8c3..7617f62d4 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 28cb647c8..f654c189d 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 447ea2ad6..eec9bf4ea 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 4a349f245..17446b973 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 821f72770..988f2973f 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index a90d9eb8b..c61d7f391 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 22e719642..2716e1187 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%59 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4900ef814..c09794ce1 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 21aea7861..b291dee8f 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9d49a23e4..32cc3c8db 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index a566107fe..cf9beebf6 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index e77fd5a6d..a7191d85a 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 464d970b1..76611be69 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index c998151e1..1323f7dfc 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 01f26a427..3b0efadb3 100644 --- a/index.html +++ b/index.html @@ -471,7 +471,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index c3b0d6197..73cfed5be 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 6d44da33b..ab874a2cb 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 97b5146bf13fd3e9615880129b83ef2009c47341 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 2 Sep 2021 10:56:57 +0000 Subject: [PATCH 070/148] deploy: a08e46bc05dd248aaec388561e452cd7b03d22eb --- Array/index.html | 2 +- Bool/index.html | 16 ++-- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 16 ++-- Float/index.html | 16 ++-- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 16 ++-- Int16/index.html | 16 ++-- Int32/index.html | 16 ++-- Int64/index.html | 16 ++-- Int8/index.html | 16 ++-- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 98 ++++++++++++------------ JSBridgedType/index.html | 32 ++++---- JSClosure/index.html | 38 ++++----- JSClosureProtocol/index.html | 32 ++++---- JSDate/index.html | 38 ++++----- JSError/index.html | 38 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 86 ++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 62 +++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 90 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 16 ++-- TypedArrayElement/index.html | 10 +-- UInt/index.html | 16 ++-- UInt16/index.html | 16 ++-- UInt32/index.html | 16 ++-- UInt64/index.html | 16 ++-- UInt8/index.html | 16 ++-- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 54 files changed, 426 insertions(+), 426 deletions(-) diff --git a/Array/index.html b/Array/index.html index a1762dc9e..828cf7734 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index a94d1e9d0..becc0ef75 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Bool?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Bool?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 1acf69abd..c7f8d348a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%67 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 578468818..ad14366b6 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%7 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 11f8b6980..ce0ece97f 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index caf2bdf36..41ccae337 100644 --- a/Double/index.html +++ b/Double/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Double?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Double?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index e9fdc1c7f..a92b8d59f 100644 --- a/Float/index.html +++ b/Float/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Float?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Float?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 37698a70f..056dc6a5d 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ac2318f70..d700194da 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 2909fa6ab..cda584a56 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -51,20 +51,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index a33eace2b..114f61c0e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 38d0f60e5..12df92037 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 5d0c13e5f..af3d32d78 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 19404ff3e..ae6da7a30 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index a75e37142..101ab1440 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%135 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 348869a5a..0d2474dc4 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 6e175670e..678e069f4 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%3 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d381c3911..916b60009 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%89 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSPromise - - -JSPromise + + +JSError + + +JSError - + -JSPromise->JSBridgedClass - - +JSError->JSBridgedClass + + - - -JSTypedArray - - -JSTypedArray + + +JSArray + + +JSArray - - -JSTypedArray->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - + -JSArray->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - + -JSDate->JSBridgedClass +JSPromise->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - + -JSError->JSBridgedClass +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6afc20b3e..a337158ae 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%53 @@ -74,37 +74,37 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index ca9d81db4..b1ccfd79e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -69,11 +69,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%21 @@ -84,33 +84,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -177,7 +177,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 158770a0b..c2efd711e 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%39 @@ -67,31 +67,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -103,7 +103,7 @@ - + JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index ee2bf17ca..4f728ed98 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%61 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 7a920b141..b14659fba 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%127 @@ -68,30 +68,30 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 21208e9fb..655cbbc9d 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%13 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 41f1be845..aec730413 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4069772a6..9ee09daa6 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%103 @@ -81,72 +81,72 @@
- - -Equatable - -Equatable + + +CustomStringConvertible + +CustomStringConvertible - - -JSObject->Equatable - - + + +JSObject->CustomStringConvertible + + - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject @@ -333,7 +333,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 9bf803c21..2ee08e989 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 3feffac8d..4ebffca2b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%47 @@ -154,7 +154,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 55f7d2546..14dfc20b6 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%17 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 5f3824842..225ef1d08 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%115 @@ -88,59 +88,59 @@
- + JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - + -JSString->ConvertibleToJSValue +JSString->LosslessStringConvertible - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1096c7b59..72e60adb0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 89dcbf5a0..4592353ad 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 19242ef04..b5d8aa8ce 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 23e9ebba5..703a63748 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%27 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 00e4c24cf..4abe97247 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%73 @@ -67,87 +67,87 @@
- + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7b0722046..dc1da4ce5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c582acb4f..7287873f0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 7617f62d4..6597da867 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f654c189d..a23f5d75e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index eec9bf4ea..9d666dfcf 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 17446b973..4d5dfcc27 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 988f2973f..a894ce85d 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index c61d7f391..ba2b05799 100644 --- a/String/index.html +++ b/String/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> String?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> String?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 2716e1187..faae6a5ad 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%33 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index c09794ce1..86e5931cf 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -51,20 +51,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index b291dee8f..e4e9f18de 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 32cc3c8db..7716386b5 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index cf9beebf6..67c120ecc 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index a7191d85a..eaf9f6438 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -50,20 +50,20 @@

Methods

-
+

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
-
+

- construct(from:​) + js​Value()

-
public static func construct(from value: JSValue) -> Self?  
+
public func jsValue() -> JSValue  
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 76611be69..59eef993a 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 1323f7dfc..3a821963d 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 3b0efadb3..4a44b7cc5 100644 --- a/index.html +++ b/index.html @@ -471,7 +471,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 73cfed5be..d41aaaafd 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index ab874a2cb..9c0f78fa0 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From ee774f184f5e170f82fe128820a84d0a0b632561 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 10 Sep 2021 16:56:46 +0000 Subject: [PATCH 071/148] deploy: d987c3e1457c449af6cccb74a1426fcf12824098 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 ++-- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 ++-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 18 +++--- JSBridgedType/index.html | 50 ++++++++-------- JSClosure/index.html | 59 +++++++++++-------- JSClosureProtocol/index.html | 43 +++++++------- JSDate/index.html | 6 +- JSError/index.html | 52 ++++++++-------- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 75 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 42 ++++++------- JSPromise/index.html | 6 +- JSString/index.html | 60 +++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++++------ JSValue/index.html | 68 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 ++-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 11 ++-- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 54 files changed, 325 insertions(+), 321 deletions(-) diff --git a/Array/index.html b/Array/index.html index 828cf7734..315c718c6 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index becc0ef75..3d55de9c6 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index c7f8d348a..a7d642344 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%29 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ad14366b6..1f97359f8 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%75 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index ce0ece97f..cf19183ae 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 41ccae337..8811ec66c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index a92b8d59f..ddd6c4860 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 056dc6a5d..7d196c002 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index d700194da..557092fd9 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index cda584a56..925290385 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 114f61c0e..a662460c3 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 12df92037..6c5d9df61 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index af3d32d78..610ca6830 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index ae6da7a30..4c73ae493 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 101ab1440..3d28e46eb 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%113 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0d2474dc4..3cd8aeec5 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 678e069f4..a86ac321f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%71 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 916b60009..23d9e736c 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%57 @@ -76,7 +76,7 @@
- + JSBridgedClass->JSBridgedType @@ -91,7 +91,7 @@ - + JSError->JSBridgedClass @@ -106,7 +106,7 @@ - + JSArray->JSBridgedClass @@ -121,7 +121,7 @@ - + JSTypedArray->JSBridgedClass @@ -136,7 +136,7 @@ - + JSPromise->JSBridgedClass @@ -151,7 +151,7 @@ - + JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a337158ae..b4520780f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%3 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - - -JSBridgedType->CustomStringConvertible - - + + +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b1ccfd79e..117d1e97e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -25,7 +25,7 @@ @@ -41,10 +41,7 @@

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions. -Note that the lifetime of JSClosure should be managed by users manually -due to GC boundary between Swift and JavaScript. -For further discussion, see also swiftwasm/JavaScriptKit #33

+This type can be passed as a callback handler to JavaScript functions.

@@ -58,7 +55,6 @@

button.addEventListener!("click", JSValue.function(eventListenter)) ... button.removeEventListener!("click", JSValue.function(eventListenter)) -eventListenter.release()

@@ -69,11 +65,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%23 @@ -84,33 +80,33 @@ - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -131,7 +127,9 @@

Superclass

Conforms To

JSClosureProtocol
-

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +are responsible for managing the lifetime of the closure they wrap, but can delegate that +task to the user by requiring an explicit release() call.

@@ -167,6 +165,15 @@

public func release()  
+

+
+

+ release() +

+
+
@available(*, deprecated, message: "JSClosure.release() is no longer necessary")
+    public func release()  
+
@@ -177,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c2efd711e..5b17ae71c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -40,7 +40,9 @@

public protocol JSClosureProtocol: JSValueCompatible  

-

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +are responsible for managing the lifetime of the closure they wrap, but can delegate that +task to the user by requiring an explicit release() call.

@@ -51,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%129 @@ -73,38 +75,38 @@ JSValueCompatible - + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -125,10 +127,7 @@

Types Conforming to JSClosure​Protocol

JSClosure

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions. -Note that the lifetime of JSClosure should be managed by users manually -due to GC boundary between Swift and JavaScript. -For further discussion, see also swiftwasm/JavaScriptKit #33

+This type can be passed as a callback handler to JavaScript functions.

@@ -157,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 4f728ed98..3d9e4fa51 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%107 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index b14659fba..3b9e0da35 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%81 @@ -68,42 +68,42 @@ - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSError->JSBridgedClass - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible - - + + - + Error - -Error + +Error JSError->Error + + + + + +JSBridgedClass + + +JSBridgedClass + + + + + +JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 655cbbc9d..b5732444b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%137 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index aec730413..e01118c5b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 9ee09daa6..4b516432d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%89 @@ -82,16 +82,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + @@ -100,53 +100,53 @@ Equatable - + JSObject->Equatable - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSObject + + +JSOneshotClosure->JSObject @@ -163,10 +163,7 @@

Subclasses

JSClosure

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions. -Note that the lifetime of JSClosure should be managed by users manually -due to GC boundary between Swift and JavaScript. -For further discussion, see also swiftwasm/JavaScriptKit #33

+This type can be passed as a callback handler to JavaScript functions.

JSFunction

JSFunction represents a function in JavaScript and supports new object instantiation. @@ -333,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 2ee08e989..7ea90ac3e 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4ebffca2b..511a440d4 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%101 @@ -66,33 +66,33 @@ - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -113,7 +113,9 @@

Superclass

Conforms To

JSClosureProtocol
-

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +are responsible for managing the lifetime of the closure they wrap, but can delegate that +task to the user by requiring an explicit release() call.

@@ -154,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 14dfc20b6..a53294ed5 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%125 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 225ef1d08..d4936d71e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%11 @@ -78,30 +78,30 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -112,35 +112,35 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 72e60adb0..bd8899a78 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 4592353ad..fe63aa9b1 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b5d8aa8ce..6bcb50fce 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 703a63748..3a12f5cb2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%35 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 4abe97247..ae0edc408 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%41 @@ -67,27 +67,27 @@
- + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable @@ -103,27 +103,27 @@ - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral @@ -134,20 +134,20 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index dc1da4ce5..99e60b4ac 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7287873f0..ed85881fd 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6597da867..0dac97a93 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index a23f5d75e..213c383dd 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 9d666dfcf..affbdf538 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 4d5dfcc27..31822778f 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index a894ce85d..ea051defc 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ba2b05799..8ca0cb845 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index faae6a5ad..c2ff59c4e 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%119 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 86e5931cf..bdecde9e8 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index e4e9f18de..0526e3599 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 7716386b5..9b9730ca6 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 67c120ecc..92acd68b3 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index eaf9f6438..edfdf9c41 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 59eef993a..c0d8167f5 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 3a821963d..5de75fb2e 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 4a44b7cc5..42c913d05 100644 --- a/index.html +++ b/index.html @@ -137,10 +137,7 @@

Classes

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions. -Note that the lifetime of JSClosure should be managed by users manually -due to GC boundary between Swift and JavaScript. -For further discussion, see also swiftwasm/JavaScriptKit #33

+This type can be passed as a callback handler to JavaScript functions.

@@ -259,7 +256,9 @@

Protocols

-

JSClosureProtocol abstracts closure object in JavaScript, whose lifetime is manualy managed

+

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +are responsible for managing the lifetime of the closure they wrap, but can delegate that +task to the user by requiring an explicit release() call.

@@ -471,7 +470,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d41aaaafd..c0b0b020f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 9c0f78fa0..517dea86d 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 99ec77ad48f93b50b631b1d92d441def504efdde Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 13 Sep 2021 07:23:33 +0000 Subject: [PATCH 072/148] deploy: aa521a1feef8e9ce2b99b25df8e753038667c1ca --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 34 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 94 ++++++++++++------------ JSBridgedType/index.html | 42 +++++------ JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 32 ++++---- JSDate/index.html | 10 +-- JSError/index.html | 12 +-- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 70 +++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 78 ++++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 76 +++++++++---------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++++----- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 54 files changed, 320 insertions(+), 320 deletions(-) diff --git a/Array/index.html b/Array/index.html index 315c718c6..4cc8949cf 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 3d55de9c6..db1dcc841 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index a7d642344..fb4825cc8 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%39 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 1f97359f8..1ee4c2542 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%55 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index cf19183ae..c73b30260 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 8811ec66c..8d8778aeb 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ddd6c4860..e9d0de537 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 7d196c002..e513167fb 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 557092fd9..b15fef4ab 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 925290385..f10a420d9 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index a662460c3..4c3ce81c6 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 6c5d9df61..d8cd12b9a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 610ca6830..d58aa4364 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4c73ae493..8ea470b8e 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 3d28e46eb..297e67bc2 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%105 @@ -67,30 +67,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3cd8aeec5..84f485fa2 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a86ac321f..3ad4eddf7 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%67 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 23d9e736c..d77398e67 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%91 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + JSError - - -JSError + + +JSError JSError->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass - - + + - - -JSPromise - - -JSPromise + + +JSDate + + +JSDate - - -JSPromise->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b4520780f..88efb48bb 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%129 @@ -67,6 +67,18 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + JSValueCompatible @@ -79,32 +91,20 @@ - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 117d1e97e..f88c86926 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%25 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 5b17ae71c..8a3ea1904 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%31 @@ -69,16 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + @@ -90,25 +90,25 @@ - + JSClosure->JSClosureProtocol - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 3d9e4fa51..847096ba4 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%61 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 3b9e0da35..42c6555f4 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%83 @@ -75,7 +75,7 @@ CustomStringConvertible
- + JSError->CustomStringConvertible @@ -87,7 +87,7 @@ Error - + JSError->Error @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b5732444b..a32df4018 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e01118c5b..a50b7144f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4b516432d..253895e49 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%71 @@ -82,56 +82,41 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - - -JSFunction - +JSClosure + -JSFunction +JSClosure - + -JSFunction->JSObject +JSClosure->JSObject @@ -150,6 +135,21 @@ + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7ea90ac3e..141835c97 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 511a440d4..ec54c42b9 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%19 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a53294ed5..94918ba88 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%45 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index d4936d71e..c98057ca6 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%111 @@ -78,69 +78,69 @@
- - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index bd8899a78..6c99fd556 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index fe63aa9b1..648df65da 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6bcb50fce..2cec4a9b3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 3a12f5cb2..571fccf0d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%49 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ae0edc408..b24a15392 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%3 @@ -67,63 +67,63 @@
- + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable @@ -139,15 +139,15 @@ - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 99e60b4ac..32e48761d 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ed85881fd..f53c06b7b 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0dac97a93..30b2c1f81 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 213c383dd..6bd962c2b 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index affbdf538..e32a03554 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 31822778f..ac1974b55 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index ea051defc..3bf3f7d11 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 8ca0cb845..2c88006c5 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c2ff59c4e..a4f9cddf6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%123 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index bdecde9e8..04fd2ed4b 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 0526e3599..192f7479f 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9b9730ca6..85ef8c25d 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 92acd68b3..c08823be8 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index edfdf9c41..903c3fabe 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index c0d8167f5..2ecd11412 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 5de75fb2e..39f5fe6f7 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 42c913d05..f3f31959a 100644 --- a/index.html +++ b/index.html @@ -470,7 +470,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index c0b0b020f..42c098dd1 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 517dea86d..b31c89ac2 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From b558fb683ccdf10d08b55d1d46cc8b2173ce21c1 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 3 Oct 2021 23:55:11 +0000 Subject: [PATCH 073/148] deploy: b9a25739f3f2fdaed3f963ea93af1047f9fd564c --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++--- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 84 ++++++------ JSBridgedType/index.html | 30 ++--- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 50 +++---- JSDate/index.html | 10 +- JSError/index.html | 40 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 84 ++++++------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 58 ++++---- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++--- JSValue/index.html | 64 ++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 164 +++++++++++++++++++++++ Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 10 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 496 insertions(+), 324 deletions(-) create mode 100644 JavaScriptEventLoop/index.html diff --git a/Array/index.html b/Array/index.html index 4cc8949cf..a813b0182 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index db1dcc841..6ba289e2f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index fb4825cc8..5fc0b3151 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%93 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 1ee4c2542..c88f73674 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%11 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index c73b30260..164dd3cb0 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 8d8778aeb..147a581dc 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index e9d0de537..2a070b0ae 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index e513167fb..98143972d 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index b15fef4ab..959ec8119 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index f10a420d9..2e2c74cce 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 4c3ce81c6..e33368530 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index d8cd12b9a..0c1a604f6 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index d58aa4364..294e9735a 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 8ea470b8e..ee6960461 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 297e67bc2..350b9446e 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%135 @@ -74,7 +74,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 84f485fa2..e9fe9bef5 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3ad4eddf7..fc084f008 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%89 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d77398e67..6ccff0122 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%53 @@ -67,50 +67,35 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - JSTypedArray @@ -121,26 +106,41 @@ - + JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + JSPromise @@ -151,7 +151,7 @@ - + JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 88efb48bb..58cff0c6e 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%3 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f88c86926..595c6efa6 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%99 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 8a3ea1904..c6b6a57bd 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%109 @@ -69,31 +69,16 @@
- + JSValueCompatible - -JSValueCompatible - - - -JSClosureProtocol->JSValueCompatible - - - - - -JSClosure - -JSClosure - - +JSValueCompatible - + -JSClosure->JSClosureProtocol - - +JSClosureProtocol->JSValueCompatible + + @@ -105,11 +90,26 @@ - + JSOneshotClosure->JSClosureProtocol + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 847096ba4..d00340052 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%129 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 42c6555f4..13c1ce907 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%45 @@ -68,15 +68,18 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -92,18 +95,15 @@ - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index a32df4018..f8344b68e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%73 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a50b7144f..9704b8e8a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 253895e49..1749b9a87 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%117 @@ -81,18 +81,6 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Equatable @@ -105,50 +93,62 @@ - - -JSClosure - - -JSClosure + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSObject - - + + - - -JSFunction - - -JSFunction + + +JSClosure + + +JSClosure - + -JSFunction->JSObject - - +JSClosure->JSObject + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 141835c97..ccc7f1a81 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index ec54c42b9..cdf81d41b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%141 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 94918ba88..3cafeeeab 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%105 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index c98057ca6..8dae148a8 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%77 @@ -78,54 +78,54 @@
- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible + + +Equatable + +Equatable + + + +JSString->Equatable + + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - + + - + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral JSString->ExpressibleByStringLiteral - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 6c99fd556..c82f746ad 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 648df65da..afbbcf1e4 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2cec4a9b3..d53cf2acc 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 571fccf0d..6b7dc27c7 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%67 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b24a15392..9b79f2f86 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%29 @@ -74,56 +74,56 @@ ExpressibleByFloatLiteral
- + JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSValue->Equatable +JSValue->CustomStringConvertible @@ -134,20 +134,20 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 32e48761d..2f968aa63 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index f53c06b7b..7cbf9f7c8 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 30b2c1f81..007c88fee 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6bd962c2b..060b74303 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index e32a03554..444b3af4c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html new file mode 100644 index 000000000..c3ff9f930 --- /dev/null +++ b/JavaScriptEventLoop/index.html @@ -0,0 +1,164 @@ + + + + + + JavaScriptKit - JavaScriptEventLoop + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + Java​Script​Event​Loop +

+ +
+
public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  
+
+
+ +
+ + + + + + +%23 + + + +JavaScriptEventLoop + + +JavaScriptEventLoop + + + + + +@unchecked Sendable + +@unchecked Sendable + + + +JavaScriptEventLoop->@unchecked Sendable + + + + + +SerialExecutor + +SerialExecutor + + + +JavaScriptEventLoop->SerialExecutor + + + + + + + + +
+

Conforms To

+
+
@unchecked Sendable
+
SerialExecutor
+
+
+
+

Properties

+ +
+

+ shared +

+
+
public static let shared: JavaScriptEventLoop  
+
+
+

A singleton instance of the Executor

+ +
+
+
+
+

Methods

+ +
+

+ install​Global​Executor() +

+
+
public static func installGlobalExecutor()  
+
+
+

Set JavaScript event loop based executor to be the global executor +Note that this should be called before any of the jobs are created. +This installation step will be unnecessary after the custom-executor will be introduced officially. +See also: https://github.com/rjmccall/swift-evolution/blob/custom-executors/proposals/0000-custom-executors.md#the-default-global-concurrent-executor

+ +
+
+
+

+ enqueue(_:​) +

+
+
public func enqueue(_ job: UnownedJob)  
+
+
+
+

+ as​Unowned​Serial​Executor() +

+
+
public func asUnownedSerialExecutor() -> UnownedSerialExecutor  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/Optional/index.html b/Optional/index.html index ac1974b55..763385ad5 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 3bf3f7d11..535b90554 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 2c88006c5..6fbfe6ae3 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index a4f9cddf6..1969e7cf1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%17 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 04fd2ed4b..96233a6d0 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 192f7479f..331adeb18 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 85ef8c25d..8efe5b393 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index c08823be8..412d17d4e 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 903c3fabe..a5d0d1d95 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 2ecd11412..5396424ea 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 39f5fe6f7..3c42b3b6e 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index f3f31959a..b2bef3910 100644 --- a/index.html +++ b/index.html @@ -35,6 +35,14 @@

On This Page

Classes

+ + Java​Script​Event​Loop + +
+
+ +
+
JSArray @@ -470,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 42c098dd1..6c80cd9b0 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index b31c89ac2..a17fd273f 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From a3e8d53a833077fdf5cfbfd1d88a750363aa82f0 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 21 Nov 2021 21:54:15 +0000 Subject: [PATCH 074/148] deploy: 9e2f414228f865e95987ba9b498b801685b3fc95 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++++----- ConvertibleToJSValue/index.html | 34 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 88 +++++++++++------------ JSBridgedType/index.html | 42 +++++------ JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 34 ++++----- JSDate/index.html | 10 +-- JSError/index.html | 42 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 88 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 70 +++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 12 ++-- JSValue/index.html | 90 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 364 insertions(+), 364 deletions(-) diff --git a/Array/index.html b/Array/index.html index a813b0182..17ba65e32 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 6ba289e2f..ee8b47eec 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 5fc0b3151..7cf568adb 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%87 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index c88f73674..a3b4ce2a3 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%75 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 164dd3cb0..5b44240db 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 147a581dc..3185aec95 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 2a070b0ae..c7a1f4dee 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 98143972d..8f441205e 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 959ec8119..e5a267e4a 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 2e2c74cce..0eea0f16c 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index e33368530..944f4b335 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 0c1a604f6..a902121ed 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 294e9735a..52c0068e6 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index ee6960461..03e4d9302 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 350b9446e..62152deca 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%115 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e9fe9bef5..5a9356f0b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index fc084f008..0201e7028 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%99 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 6ccff0122..ad05cdcc9 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%133 @@ -67,79 +67,79 @@ - + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + @@ -151,7 +151,7 @@ - + JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 58cff0c6e..09b48e550 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%39 @@ -68,43 +68,43 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 595c6efa6..f850ed8f6 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%93 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c6b6a57bd..f2ff4daed 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%3 @@ -69,31 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index d00340052..6483da263 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%33 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 13c1ce907..8ef97a076 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%107 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index f8344b68e..ee54ce18e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%103 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9704b8e8a..af05e1142 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 1749b9a87..8aec3766b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%121 @@ -82,74 +82,74 @@
- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ccc7f1a81..5412caca6 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index cdf81d41b..7ee8d8ea0 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%53 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 3cafeeeab..86395d15e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%71 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 8dae148a8..6be6d898c 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%59 @@ -78,15 +78,18 @@
- - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue @@ -97,50 +100,47 @@ Equatable - + JSString->Equatable - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -JSString->ConstructibleFromJSValue - - - - + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral JSString->ExpressibleByStringLiteral - - + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c82f746ad..1146648ab 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index afbbcf1e4..3eed73a09 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d53cf2acc..bdeaad5c5 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6b7dc27c7..b4d69521e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%81 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -195,7 +195,7 @@

init(_:​)

-
public convenience init<S: Sequence>(_ sequence: S)  
+
public convenience init<S: Sequence>(_ sequence: S) where S.Element == Element  

Convenience initializer for Sequence.

@@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 9b79f2f86..edbdfdfc6 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%11 @@ -67,87 +67,87 @@ - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 2f968aa63..cb5920586 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7cbf9f7c8..269f1ae37 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 007c88fee..01d3dc2b1 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 060b74303..8c28cb18f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 444b3af4c..679e3f899 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index c3ff9f930..986562281 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%27 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 763385ad5..fe568cbab 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 535b90554..2e8c83231 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6fbfe6ae3..8410b850a 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1969e7cf1..14680d79d 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%47 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 96233a6d0..c23091264 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 331adeb18..cfcb341a5 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 8efe5b393..5be14ad5f 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 412d17d4e..1a0f63043 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index a5d0d1d95..341191d16 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 5396424ea..aeef918f1 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 3c42b3b6e..e4f997c54 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index b2bef3910..86338d1ee 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 6c80cd9b0..785b6d352 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index a17fd273f..b7c43bdc7 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From c5fcd0b3eb2d7839a659ff3fde2fdc6d7af60375 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 22 Nov 2021 11:12:48 +0000 Subject: [PATCH 075/148] deploy: 40b1614b4ed12c3741b5fadc47f07dcc55a1ac82 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++---- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 106 +++++++++++------------ JSBridgedType/index.html | 34 ++++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 48 +++++----- JSDate/index.html | 10 +-- JSError/index.html | 40 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 58 ++++++------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 82 +++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSValue/index.html | 90 +++++++++---------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 380 insertions(+), 380 deletions(-) diff --git a/Array/index.html b/Array/index.html index 17ba65e32..f750619c0 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index ee8b47eec..c734a2361 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7cf568adb..d351fa2b6 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%59 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index a3b4ce2a3..6b615d571 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%141 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 5b44240db..759ee0835 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 3185aec95..a1e17564c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index c7a1f4dee..5c90fc5da 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 8f441205e..882dd4081 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index e5a267e4a..0ee2f539d 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 0eea0f16c..59fb39d75 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 944f4b335..47d5641c5 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a902121ed..94ee11c59 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 52c0068e6..447e5ad98 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 03e4d9302..9c5593fe1 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 62152deca..036add6ed 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%99 @@ -67,30 +67,30 @@
- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5a9356f0b..3359cb74e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 0201e7028..a250ac661 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%37 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ad05cdcc9..e5e15fd6a 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%105 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - + -JSError->JSBridgedClass +JSPromise->JSBridgedClass - + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 09b48e550..488f6e935 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%65 @@ -68,16 +68,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + @@ -86,25 +86,25 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f850ed8f6..f24bbfe9a 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%41 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index f2ff4daed..25260cc46 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%19 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - + -JSOneshotClosure->JSClosureProtocol - - +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 6483da263..ece775ad1 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%7 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 8ef97a076..d58c6e1aa 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%91 @@ -75,35 +75,35 @@ Error
- + JSError->Error + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ee54ce18e..59c4ee431 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%33 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index af05e1142..9c9739bb3 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 8aec3766b..a8960b100 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%47 @@ -81,27 +81,27 @@
- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable @@ -115,38 +115,38 @@ - + JSClosure->JSObject - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - - -JSFunction->JSObject + + +JSOneshotClosure->JSObject - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - + -JSOneshotClosure->JSObject +JSFunction->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 5412caca6..13c7a31c5 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 7ee8d8ea0..080a53d74 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%27 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 86395d15e..d7aafaae3 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%3 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 6be6d898c..48c93a1ce 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%79 @@ -78,69 +78,69 @@
- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - + -JSString->ConstructibleFromJSValue +JSString->Equatable - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - + + - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible - + JSString->LosslessStringConvertible + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1146648ab..97f99f3fc 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 3eed73a09..b3adf8902 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index bdeaad5c5..f01a3db42 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b4d69521e..1ad669460 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%73 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index edbdfdfc6..8cfdccfbc 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%119 @@ -67,87 +67,87 @@
- + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index cb5920586..50c9bc125 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 269f1ae37..ba1de9c6b 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 01d3dc2b1..a6b48b576 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 8c28cb18f..31a4e107f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 679e3f899..dbdaa9874 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 986562281..c0c637e7b 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%13 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index fe568cbab..d9102e5a8 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 2e8c83231..ab2fa8022 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 8410b850a..69c211175 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 14680d79d..18636a3ca 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%135 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index c23091264..ce5c2acd1 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index cfcb341a5..37ba4fc9d 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 5be14ad5f..78cda289e 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 1a0f63043..420937bbf 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 341191d16..6db9b2a46 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index aeef918f1..6588de73a 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index e4f997c54..ac33b29e0 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 86338d1ee..22cf2f7f8 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 785b6d352..15dc62e19 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index b7c43bdc7..953bc6062 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 1363eb638962127a2c2ab93c00b83d1e0da4bfaa Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 22 Nov 2021 16:24:07 +0000 Subject: [PATCH 076/148] deploy: 286f8ec835d9e8d8094751606aaf6f5ab1c6dc47 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++++----- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 74 ++++++++++---------- JSBridgedType/index.html | 50 +++++++------- JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 36 +++++----- JSDate/index.html | 36 +++++----- JSError/index.html | 12 ++-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 62 ++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 76 ++++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++++----- JSValue/index.html | 88 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 373 insertions(+), 373 deletions(-) diff --git a/Array/index.html b/Array/index.html index f750619c0..6623545a9 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index c734a2361..a27a599e4 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index d351fa2b6..0c2a5f884 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%81 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 6b615d571..475c2f629 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%117 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 759ee0835..8f7596b30 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index a1e17564c..e21574a25 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 5c90fc5da..4edb1eed5 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 882dd4081..90548aa7f 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 0ee2f539d..ee724f6ba 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 59fb39d75..d35f1b370 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 47d5641c5..fd3878c70 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 94ee11c59..2df13ed1c 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 447e5ad98..b9d1e805e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 9c5593fe1..6a2a7aa0d 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 036add6ed..a8c7192be 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%51 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3359cb74e..e03a8d427 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a250ac661..34c3daefe 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%63 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e5e15fd6a..32269dccf 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%87 @@ -76,38 +76,38 @@
- + JSBridgedClass->JSBridgedType - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -121,38 +121,38 @@ - + JSPromise->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 488f6e935..f96c803a3 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%139 @@ -67,44 +67,44 @@
- - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - - -JSBridgedType->JSValueCompatible - - + + +JSBridgedType->CustomStringConvertible + + - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f24bbfe9a..bea33aae9 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%19 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 25260cc46..55349a17d 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%25 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index ece775ad1..81f315b1c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%75 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index d58c6e1aa..e70db3537 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%67 @@ -75,7 +75,7 @@ Error
- + JSError->Error @@ -87,7 +87,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 59c4ee431..1e4efcdb4 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%129 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9c9739bb3..2377b7370 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index a8960b100..4f30560ad 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%105 @@ -88,38 +88,53 @@ CustomStringConvertible
- + JSObject->CustomStringConvertible - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSClosure - +JSFunction + -JSClosure +JSFunction - + -JSClosure->JSObject +JSFunction->JSObject + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + + JSOneshotClosure @@ -135,21 +150,6 @@ - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 13c7a31c5..fe854a7d2 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 080a53d74..c1cbcb082 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%45 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d7aafaae3..011d385d0 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%101 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 48c93a1ce..20ef0555b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%33 @@ -78,69 +78,69 @@
- - -Equatable - -Equatable - - - -JSString->Equatable - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue + + + + + +Equatable + +Equatable + + + +JSString->Equatable - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 97f99f3fc..ffac0ef31 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index b3adf8902..22196bdef 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index f01a3db42..cf30b93ec 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 1ad669460..dc865cd37 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%57 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 8cfdccfbc..ae7aa3eaf 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%3 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSValue->CustomStringConvertible +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 50c9bc125..0bb0213c8 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ba1de9c6b..5f46fe910 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a6b48b576..be50fe547 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 31a4e107f..b78e50782 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index dbdaa9874..b513c4e02 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index c0c637e7b..5574c392c 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%133 @@ -62,27 +62,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index d9102e5a8..6b6891862 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index ab2fa8022..f1c067333 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 69c211175..faee7cf51 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 18636a3ca..d64ed9b88 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%123 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index ce5c2acd1..bbbc826f2 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 37ba4fc9d..434c86a29 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 78cda289e..17bfac5a1 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 420937bbf..d5d5a9dfa 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 6db9b2a46..f013184f2 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 6588de73a..1acd9efd1 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index ac33b29e0..64a9f2a28 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 22cf2f7f8..3c9abbfb0 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 15dc62e19..1d28ff7cc 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 953bc6062..f2cdd8e3b 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From cc86b658584b8f854d53b5ea953c9537474cbce1 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 22 Nov 2021 17:46:18 +0000 Subject: [PATCH 077/148] deploy: 309e63c03d8116210ad0437f5d1f09a26d4de48b --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 34 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 92 ++++++++++++------------ JSBridgedType/index.html | 42 +++++------ JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 48 ++++++------- JSDate/index.html | 36 +++++----- JSError/index.html | 32 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 68 +++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 52 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 70 +++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 355 insertions(+), 355 deletions(-) diff --git a/Array/index.html b/Array/index.html index 6623545a9..9fb565a82 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index a27a599e4..ac158f84c 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 0c2a5f884..4321d05b0 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%73 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 475c2f629..b2ea54455 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%43 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 8f7596b30..b9e9403e6 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index e21574a25..7179c2ff2 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 4edb1eed5..2ab04df74 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 90548aa7f..9e705d2a0 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ee724f6ba..3f13fb78d 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index d35f1b370..c22248a87 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index fd3878c70..3be95e26c 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 2df13ed1c..497d0c213 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index b9d1e805e..28e0e4a60 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 6a2a7aa0d..bda90dea2 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index a8c7192be..c97695b3a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%67 @@ -67,30 +67,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e03a8d427..144785436 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 34c3daefe..9364e75f7 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%105 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 32269dccf..60804e78c 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%23 @@ -67,77 +67,77 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - + -JSTypedArray->JSBridgedClass +JSError->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass @@ -151,7 +151,7 @@ - + JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index f96c803a3..84e9943a5 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%3 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index bea33aae9..b7f846a23 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%99 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 55349a17d..abe368a6a 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%127 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - + -JSOneshotClosure->JSClosureProtocol - - +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 81f315b1c..7d847fcd1 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%49 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index e70db3537..5cf858415 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%119 @@ -68,27 +68,27 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1e4efcdb4..20f0e8c81 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%115 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 2377b7370..9fc848537 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4f30560ad..cfaaa84f5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%55 @@ -88,67 +88,67 @@ CustomStringConvertible
- + JSObject->CustomStringConvertible - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - + -JSFunction->JSObject +JSOneshotClosure->JSObject - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index fe854a7d2..98a989425 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index c1cbcb082..35c898c86 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%109 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 011d385d0..26a09e84b 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%95 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 20ef0555b..6740ccc28 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%135 @@ -78,18 +78,15 @@
- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -103,20 +100,20 @@
- + JSString->ConvertibleToJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible @@ -127,20 +124,23 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index ffac0ef31..05dc901a6 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 22196bdef..5a27917dc 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index cf30b93ec..d307fd77d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index dc865cd37..15f991621 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%37 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ae7aa3eaf..6867fb140 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%79 @@ -67,63 +67,63 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -134,7 +134,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -146,7 +146,7 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 0bb0213c8..455f0d7da 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 5f46fe910..d4f45c3ce 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index be50fe547..d2103e7eb 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b78e50782..33aaf06db 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index b513c4e02..5816ed5d8 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 5574c392c..c1c097272 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%17 @@ -62,27 +62,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 6b6891862..aaee3aa41 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index f1c067333..0aa6e21b7 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index faee7cf51..1e9027413 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index d64ed9b88..260eeae47 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%11 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index bbbc826f2..a1ace34fd 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 434c86a29..c15a0a850 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 17bfac5a1..642bcf844 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index d5d5a9dfa..5a730ceff 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index f013184f2..8028b4a9b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1acd9efd1..1b5069c8f 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 64a9f2a28..5edbec1bc 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 3c9abbfb0..4f019741d 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 1d28ff7cc..57ed88d59 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index f2cdd8e3b..61c1ec16a 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From cc2e9523be4b90eca019c6b42f0bab3d09da6451 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sat, 4 Dec 2021 06:51:04 +0000 Subject: [PATCH 078/148] deploy: c2df54369b322c0bf0410e6cfa6b39fb945f5efb --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++++----- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 96 ++++++++++++------------ JSBridgedType/index.html | 26 +++---- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 54 ++++++------- JSDate/index.html | 36 ++++----- JSError/index.html | 6 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 74 +++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 64 ++++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 ++++----- JSValue/index.html | 86 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++++----- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 364 insertions(+), 364 deletions(-) diff --git a/Array/index.html b/Array/index.html index 9fb565a82..152d9e820 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index ac158f84c..be5c30463 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 4321d05b0..2f97559d8 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%141 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b2ea54455..9531a1bfc 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%63 @@ -76,7 +76,7 @@ - + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b9e9403e6..323ab7764 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 7179c2ff2..ce00fc355 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 2ab04df74..73299edd1 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 9e705d2a0..31c8bfd3a 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 3f13fb78d..682479a26 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index c22248a87..5e8ab2dea 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 3be95e26c..8e509f9fc 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 497d0c213..c445e6efd 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 28e0e4a60..8072fc4bb 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index bda90dea2..3b29a2fc4 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index c97695b3a..0fe83fae4 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%69 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 144785436..2140fa4f2 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9364e75f7..263cffc48 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%9 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 60804e78c..f10ed26f9 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%35 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSError - - -JSError + + +JSDate + + +JSDate - - -JSError->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + -JSPromise - +JSError + -JSPromise +JSError - + -JSPromise->JSBridgedClass +JSError->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 84e9943a5..8ae3a9c12 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%97 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b7f846a23..3cbab11b6 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%79 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index abe368a6a..36adea9ea 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%133 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSClosureProtocol - - + + +JSOneshotClosure->JSClosureProtocol + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 7d847fcd1..280312c05 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%3 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 5cf858415..8026a7321 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%55 @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 20f0e8c81..e0f5dbc8d 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%75 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9fc848537..3792d1b99 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cfaaa84f5..43b6bc387 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%13 @@ -82,16 +82,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + @@ -100,53 +100,53 @@ Equatable - + JSObject->Equatable - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 98a989425..502f76b74 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 35c898c86..1ac29eb30 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%29 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 26a09e84b..954efee7f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%25 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 6740ccc28..f38ec28b9 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%85 @@ -78,30 +78,30 @@
- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -112,35 +112,35 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - + -JSString->ConstructibleFromJSValue +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 05dc901a6..9a8d158b9 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 5a27917dc..788b7db18 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d307fd77d..e9caaac52 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 15f991621..ceceb9e20 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%49 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 6867fb140..b856ae4b2 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%111 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSValue->CustomStringConvertible +JSValue->Equatable - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 455f0d7da..55a61d98a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index d4f45c3ce..4187cfa9e 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d2103e7eb..0f0560c0e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 33aaf06db..ffeeda7fd 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5816ed5d8..4f69fc7da 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index c1c097272..f5f1fc3dd 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%127 @@ -62,27 +62,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index aaee3aa41..e677c271c 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 0aa6e21b7..e2c828f9e 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 1e9027413..685fa36d7 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 260eeae47..4a6073062 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%105 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index a1ace34fd..147e2a408 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index c15a0a850..9c1924e30 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 642bcf844..a11886110 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 5a730ceff..dda8abbb7 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 8028b4a9b..455ef1db5 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1b5069c8f..206fcd48c 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 5edbec1bc..fce58d84c 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 4f019741d..94e2d9ace 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 57ed88d59..75a35a422 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 61c1ec16a..fee2648d2 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 9a00775238ec6a7c3ccbb3d5a1a972d4581fbc1d Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 5 Dec 2021 15:51:00 +0000 Subject: [PATCH 079/148] deploy: e2c14a195366002d6fdf3696b2773b067feb8e03 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 38 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 102 +++++++++++------------ JSBridgedType/index.html | 42 +++++----- JSClosure/index.html | 38 ++++----- JSClosureProtocol/index.html | 34 ++++---- JSDate/index.html | 36 ++++---- JSError/index.html | 52 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 70 ++++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++----- JSPromise/index.html | 6 +- JSString/index.html | 76 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++----- JSValue/index.html | 60 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 397 insertions(+), 397 deletions(-) diff --git a/Array/index.html b/Array/index.html index 152d9e820..1f6836c88 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index be5c30463..b991f599b 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 2f97559d8..ec4b86c2a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%3 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 9531a1bfc..9cd9c5409 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%47 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 323ab7764..aed825d1c 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index ce00fc355..cb531cd1b 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 73299edd1..7ee2ddbf2 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 31c8bfd3a..97762e39a 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 682479a26..6f07caea6 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 5e8ab2dea..05b4e7d86 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 8e509f9fc..b4cb5248d 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index c445e6efd..2a7dbc122 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 8072fc4bb..67e4b7e35 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 3b29a2fc4..d4b686c3d 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 0fe83fae4..638e9188d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%15 @@ -67,30 +67,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 2140fa4f2..3de38375d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 263cffc48..58fe2d84d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%107 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f10ed26f9..8b69da34f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%133 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - - -JSPromise - - -JSPromise + + +JSArray + + +JSArray - - -JSPromise->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 8ae3a9c12..a59253601 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%121 @@ -68,43 +68,43 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 3cbab11b6..c1f898462 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%65 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 36adea9ea..a2869959c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%83 @@ -69,31 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 280312c05..3ab72a713 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%53 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 8026a7321..bbf892fe4 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%21 @@ -68,42 +68,42 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index e0f5dbc8d..d699bb00c 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%129 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 3792d1b99..15dd8f4ec 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 43b6bc387..45cc0289a 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%71 @@ -81,72 +81,72 @@
- + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSObject + + +JSOneshotClosure->JSObject - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - + -JSOneshotClosure->JSObject +JSFunction->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 502f76b74..eb7307aa9 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1ac29eb30..91f86a0d9 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%59 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 954efee7f..acdccab4c 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%111 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index f38ec28b9..5421f64b6 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%29 @@ -78,69 +78,69 @@
- - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue - - + + - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible - + JSString->LosslessStringConvertible - - + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - + + - + Equatable - -Equatable + +Equatable - + JSString->Equatable + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 9a8d158b9..4a9ff17e0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 788b7db18..11805ef4d 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index e9caaac52..eae906138 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ceceb9e20..5f02da819 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%41 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b856ae4b2..bcbea06ae 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%91 @@ -74,7 +74,7 @@ JSValueCompatible
- + JSValue->JSValueCompatible @@ -86,7 +86,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -98,56 +98,56 @@ Equatable - + JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 55a61d98a..5ccc82566 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 4187cfa9e..530acd894 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0f0560c0e..9d34a3d3d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ffeeda7fd..b68777045 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4f69fc7da..d98764ebb 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index f5f1fc3dd..716717ca0 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%115 @@ -62,27 +62,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index e677c271c..a78b75887 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index e2c828f9e..3c483a883 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 685fa36d7..630d260b7 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4a6073062..e1f8c8db4 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%9 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 147e2a408..d8112a783 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 9c1924e30..c9f9a8759 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index a11886110..9612ac627 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index dda8abbb7..f871d0a4d 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 455ef1db5..bf4bfc55c 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 206fcd48c..33ae3ba38 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index fce58d84c..2b87a00e0 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 94e2d9ace..6435d13a7 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 75a35a422..739ed7a35 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index fee2648d2..67ad88212 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 50d8c0b88a5d9e38a4887f47b5b9e07417900203 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 3 Jan 2022 19:02:00 +0000 Subject: [PATCH 080/148] deploy: 10349408e88cc185cdd4ca60e73b3681bb8d4760 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 82 ++++++++++++------------ JSBridgedType/index.html | 30 ++++----- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 48 +++++++------- JSDate/index.html | 38 +++++------ JSError/index.html | 52 +++++++-------- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 72 ++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 30 ++++----- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 80 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++++----- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 319 insertions(+), 319 deletions(-) diff --git a/Array/index.html b/Array/index.html index 1f6836c88..e944a71f9 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index b991f599b..53acfb222 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ec4b86c2a..1f424cb14 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%67 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 9cd9c5409..bbdf37c90 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%89 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index aed825d1c..12bd42ee1 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index cb531cd1b..fa08bf1d3 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 7ee2ddbf2..7aee5159a 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 97762e39a..ee5e79784 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 6f07caea6..9c3fcb541 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 05b4e7d86..0ddd0a352 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index b4cb5248d..f05f0054a 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 2a7dbc122..167e3f650 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 67e4b7e35..34255403b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index d4b686c3d..20c4ed5dc 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 638e9188d..3046b9cbc 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%61 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3de38375d..cc339c3bb 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 58fe2d84d..7ffec90ac 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%57 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 8b69da34f..ad2180299 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -67,34 +67,34 @@

- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSError - - -JSError + + +JSDate + + +JSDate - - -JSError->JSBridgedClass - - + + +JSDate->JSBridgedClass + + @@ -111,48 +111,48 @@ - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - + -JSTypedArray->JSBridgedClass +JSPromise->JSBridgedClass - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a59253601..7cce2d6bf 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%3 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c1f898462..c8ae91ff7 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%113 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index a2869959c..a9d4e898b 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%37 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - + -JSOneshotClosure->JSClosureProtocol - - +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 3ab72a713..963448c53 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%95 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index bbf892fe4..22be47d54 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%125 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - - -JSError->JSBridgedClass + + +JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index d699bb00c..36099004d 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%11 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 15dd8f4ec..faf015c7e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 45cc0289a..614750a0f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%45 @@ -81,29 +81,29 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + @@ -115,40 +115,40 @@ - + JSClosure->JSObject - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index eb7307aa9..e3bceed31 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 91f86a0d9..87eeddcae 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%19 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index acdccab4c..27fd5356f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%15 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 5421f64b6..c369cebe3 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%25 @@ -115,32 +115,32 @@
- + JSString->ConvertibleToJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSString->Equatable +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 4a9ff17e0..a1887ad6e 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 11805ef4d..1c053f78b 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index eae906138..a34a396a9 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5f02da819..7ae8361f1 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%119 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index bcbea06ae..37ab5e313 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%73 @@ -67,51 +67,51 @@
- + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible @@ -122,32 +122,32 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5ccc82566..bc244bbad 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 530acd894..7a0ec0d7a 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9d34a3d3d..e88aa1631 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b68777045..e96d609f4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d98764ebb..9f8f616ed 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 716717ca0..a481b94ff 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%107 @@ -62,27 +62,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index a78b75887..58229c72a 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 3c483a883..dc51972e1 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 630d260b7..72feae06d 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e1f8c8db4..906651e7c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%101 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index d8112a783..197791d3e 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index c9f9a8759..30134aab4 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9612ac627..93cb771d6 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index f871d0a4d..be359572f 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index bf4bfc55c..a42ea76c8 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 33ae3ba38..0beccd227 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 2b87a00e0..8ce2f2eb1 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 6435d13a7..2a7f75701 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 739ed7a35..edc622109 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 67ad88212..a3ad4ff79 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From efa27bad753ded8c9f9e101bdaef7b239f69c998 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Mon, 24 Jan 2022 08:51:05 +0000 Subject: [PATCH 081/148] deploy: 616284a9c17a58b404937b99eaebbe31a6552e5b --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 108 +++++++++++------------ JSBridgedType/index.html | 10 +-- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 44 ++++----- JSDate/index.html | 36 ++++---- JSError/index.html | 32 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 46 +++++----- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 86 +++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSValue/index.html | 78 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 366 insertions(+), 366 deletions(-) diff --git a/Array/index.html b/Array/index.html index e944a71f9..5f9c293c5 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 53acfb222..4d74dd259 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 1f424cb14..1e5320455 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%31 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index bbdf37c90..8e2082642 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%127 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 12bd42ee1..b9d686941 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index fa08bf1d3..ed572d93c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 7aee5159a..1c7f06ef0 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index ee5e79784..2c7ddd295 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 9c3fcb541..a6bb2f9a0 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 0ddd0a352..f30ba0c77 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index f05f0054a..66c90b264 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 167e3f650..e96f00bf1 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 34255403b..076830292 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 20c4ed5dc..27520a475 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 3046b9cbc..d46b5e66a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%69 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index cc339c3bb..2d39c31d3 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7ffec90ac..592976155 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%27 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ad2180299..4be7c45f0 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%47 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 7cce2d6bf..651d86a4e 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%103 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -86,7 +86,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c8ae91ff7..1fe637acb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%141 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index a9d4e898b..a232acb28 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%61 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 963448c53..c269c1f50 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%41 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 22be47d54..3e6184a20 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%133 @@ -68,15 +68,15 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -90,20 +90,20 @@
- + JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 36099004d..b91aadf80 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%75 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index faf015c7e..f474f713c 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 614750a0f..075a4c30a 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%91 @@ -88,22 +88,22 @@ CustomStringConvertible
- + JSObject->CustomStringConvertible - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + @@ -121,34 +121,34 @@ - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e3bceed31..ef037a003 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 87eeddcae..91683c611 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%85 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 27fd5356f..cf2d697e4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%37 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index c369cebe3..7af31d096 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%3 @@ -78,69 +78,69 @@
- - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index a1887ad6e..97da85e24 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 1c053f78b..a6bde6545 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a34a396a9..bf4533735 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 7ae8361f1..40b5f9570 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%21 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -231,7 +231,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 37ab5e313..1c4277097 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%111 @@ -67,51 +67,51 @@
- + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral @@ -122,32 +122,32 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index bc244bbad..4c8f375a5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7a0ec0d7a..da26f5afa 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e88aa1631..fd4a6b936 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index e96d609f4..5fc804037 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 9f8f616ed..c84b5609f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index a481b94ff..f1ef3ebba 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%79 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 58229c72a..3da66ac94 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index dc51972e1..bb811ce23 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 72feae06d..a77f0e127 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 906651e7c..cffae505e 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%15 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 197791d3e..9081e3f56 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 30134aab4..783f1e1af 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 93cb771d6..e503fe0d3 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index be359572f..bf478f116 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index a42ea76c8..9877df655 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 0beccd227..90cd407b3 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 8ce2f2eb1..9d644d90b 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 2a7f75701..e0d2881ec 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index edc622109..19585d94d 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index a3ad4ff79..7d45185cd 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 6a69d0b9078d6af88b38584d2c7a992860db7c60 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Mon, 24 Jan 2022 12:41:21 +0000 Subject: [PATCH 082/148] deploy: 53a2de69a48030cc2ce1cccf7d1e00ac8d8deb5b --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 70 +++++++++---------- JSBridgedType/index.html | 44 ++++++------ JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 30 ++++---- JSDate/index.html | 6 +- JSError/index.html | 40 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 76 ++++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 82 +++++++++++----------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 71 +++++++++++++++++-- JSValue/index.html | 88 ++++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 387 insertions(+), 328 deletions(-) diff --git a/Array/index.html b/Array/index.html index 5f9c293c5..41d86b1a3 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 4d74dd259..66693d4d9 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 1e5320455..8edfcf62a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%47 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 8e2082642..cab8a85da 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%15 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b9d686941..d7fce96be 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index ed572d93c..e26599e8e 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 1c7f06ef0..afad45ffe 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 2c7ddd295..ae3a77c79 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index a6bb2f9a0..18fddd6ee 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index f30ba0c77..9ece64b4c 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 66c90b264..380fc1b17 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index e96f00bf1..a0126892f 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 076830292..f969252c7 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 27520a475..b89b6225a 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index d46b5e66a..5142b14e6 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%133 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 2d39c31d3..f4117e16d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 592976155..81e51a78f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%43 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4be7c45f0..1e0dbfb3d 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%65 @@ -76,23 +76,23 @@ - + JSBridgedClass->JSBridgedType - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -106,53 +106,53 @@ - + JSPromise->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - + -JSTypedArray->JSBridgedClass +JSError->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 651d86a4e..0528e9df7 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%21 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1fe637acb..edb244dad 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%3 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index a232acb28..01810c222 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%35 @@ -80,33 +80,33 @@
- + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - + -JSOneshotClosure->JSClosureProtocol +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index c269c1f50..3d4882448 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%9 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 3e6184a20..51e641124 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%139 @@ -68,30 +68,30 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b91aadf80..4493bcd89 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%113 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f474f713c..f190a8522 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 075a4c30a..26ed0e3d5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%53 @@ -81,29 +81,29 @@
- + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable - - -Equatable - -Equatable + + +CustomStringConvertible + +CustomStringConvertible - - -JSObject->Equatable - - + + +JSObject->CustomStringConvertible + + @@ -115,38 +115,38 @@ - + JSClosure->JSObject - - -JSOneshotClosure - - -JSOneshotClosure + + +JSFunction + + +JSFunction - - -JSOneshotClosure->JSObject - - + + +JSFunction->JSObject + + - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - - -JSFunction->JSObject + + +JSOneshotClosure->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ef037a003..d95b8e548 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 91683c611..e21367378 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%29 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index cf2d697e4..de4e0dbf8 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%123 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 7af31d096..1ddbf8379 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%79 @@ -78,69 +78,69 @@
- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - + -JSString->ConstructibleFromJSValue +JSString->ExpressibleByStringLiteral - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - + -JSString->ConvertibleToJSValue +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 97da85e24..936833c63 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index a6bde6545..5b10fa67a 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index bf4533735..5687f8381 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 40b5f9570..e9c5281df 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%117 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -221,6 +221,65 @@

public var jsObject: JSObject
+

+
+

+ length​InBytes +

+
+
public var lengthInBytes: Int  
+
+
+

Length (in bytes) of the typed array. +The value is established when a TypedArray is constructed and cannot be changed. +If the TypedArray is not specifying a byteOffset or a length, the length of the referenced ArrayBuffer will be returned.

+ +
+
+ +
+

Methods

+ +
+

+ with​Unsafe​Bytes(_:​) +

+
+
public func withUnsafeBytes<R>(_ body: (UnsafeBufferPointer<Element>) throws -> R) rethrows -> R  
+
+
+

Calls the given closure with a pointer to a copy of the underlying bytes of the +array's storage.

+ +
+
+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
body(Unsafe​Buffer​Pointer<Element>) throws -> R

A closure with an UnsafeBufferPointer parameter that points to the contiguous storage for the array. If body has a return value, that value is also used as the return value for the withUnsafeBytes(_:) method. The argument is valid only for the duration of the closure's execution.

+
+

Returns

+

The return value, if any, of the body closure parameter.

+
@@ -231,7 +290,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 1c4277097..764db2c60 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%97 @@ -67,87 +67,87 @@
- + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByNilLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 4c8f375a5..7af269fbd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index da26f5afa..496a508be 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index fd4a6b936..a3974b6b1 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 5fc804037..3e36ee262 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index c84b5609f..4df870b50 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index f1ef3ebba..4ff567da2 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%91 @@ -62,27 +62,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 3da66ac94..7fbbfeff8 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index bb811ce23..3c566df3f 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index a77f0e127..383afff6f 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index cffae505e..ba76911c4 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%127 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 9081e3f56..499109e75 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 783f1e1af..b9034f5fb 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index e503fe0d3..77d39a4df 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index bf478f116..ec84924b4 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 9877df655..bca589d17 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 90cd407b3..41fb0e56b 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9d644d90b..0225aeeab 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index e0d2881ec..132f595dd 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 19585d94d..c5d960c14 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 7d45185cd..2224adb33 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 390be1e7900bd058970cf1bb678d189771203895 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Mon, 24 Jan 2022 14:45:42 +0000 Subject: [PATCH 083/148] deploy: 20c634a7e73f87daab42e10362951e198c7224d6 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++----- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 98 ++++++++++++------------ JSBridgedType/index.html | 42 +++++----- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 48 ++++++------ JSDate/index.html | 10 +-- JSError/index.html | 36 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 70 ++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 78 +++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 ++++----- JSValue/index.html | 86 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 350 insertions(+), 350 deletions(-) diff --git a/Array/index.html b/Array/index.html index 41d86b1a3..68a39f778 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 66693d4d9..186fe40ca 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 8edfcf62a..46397a7c9 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%49 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index cab8a85da..21cb35a5d 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%67 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index d7fce96be..58f12acc3 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index e26599e8e..6429a5801 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index afad45ffe..ee0a63adb 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index ae3a77c79..63c9ee5a1 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 18fddd6ee..6b1d97d78 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 9ece64b4c..e093985d4 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 380fc1b17..efcc9f09a 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a0126892f..21b06bc88 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index f969252c7..784b82f7f 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index b89b6225a..44a6e80db 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 5142b14e6..f217126d0 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%37 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f4117e16d..c959e6520 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 81e51a78f..8a9750ae9 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%135 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 1e0dbfb3d..ea5e91952 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%109 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - -JSBridgedClass->JSBridgedType - - - - - -JSTypedArray - - -JSTypedArray - - - - -JSTypedArray->JSBridgedClass - - +JSBridgedClass->JSBridgedType + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 0528e9df7..4b681e243 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%55 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index edb244dad..b60d619b0 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%123 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 01810c222..bf62738bc 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%3 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - + -JSOneshotClosure->JSClosureProtocol +JSClosure->JSClosureProtocol - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - + -JSClosure->JSClosureProtocol - - +JSOneshotClosure->JSClosureProtocol + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 3d4882448..8ca2812ee 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%91 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 51e641124..316cd6ecf 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -68,30 +68,30 @@

- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 4493bcd89..db498ea51 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%63 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f190a8522..fb1c62f15 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 26ed0e3d5..bcfe2b07b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%97 @@ -81,72 +81,72 @@
- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSObject->CustomStringConvertible +JSObject->Equatable - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - - -JSFunction->JSObject + + +JSOneshotClosure->JSObject - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index d95b8e548..8a071a9cc 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index e21367378..f0cca35c4 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%129 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index de4e0dbf8..da1638d0a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%33 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 1ddbf8379..0470b8aed 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -78,69 +78,69 @@

- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConstructibleFromJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 936833c63..7851dc864 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 5b10fa67a..f5c2ab568 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 5687f8381..305678175 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index e9c5281df..1075816c0 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%43 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 764db2c60..d790e449d 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%17 @@ -67,87 +67,87 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - + -JSValue->ExpressibleByFloatLiteral +JSValue->JSValueCompatible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSValue->Equatable +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7af269fbd..7c14e3f5c 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 496a508be..5add39c35 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a3974b6b1..6d2e5b1b9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3e36ee262..12ca8f220 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4df870b50..3b76fca15 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 4ff567da2..d1034f2ab 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%73 @@ -62,27 +62,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7fbbfeff8..93c57064b 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 3c566df3f..9ffcd9e3b 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 383afff6f..7d9de4ae0 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ba76911c4..560b29166 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%11 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 499109e75..03fa3e5cf 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index b9034f5fb..90603a15f 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 77d39a4df..d30990f3d 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index ec84924b4..8166b959b 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index bca589d17..53afbd105 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 41fb0e56b..0ce5409f8 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 0225aeeab..8244412eb 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 132f595dd..95ba84325 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index c5d960c14..6daaec7fd 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 2224adb33..ba7b58263 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 17c965c6f321a28d45d1b83c65fb910eec0f96d1 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Tue, 25 Jan 2022 06:41:54 +0000 Subject: [PATCH 084/148] deploy: 16eaaa459eb856d98f04adaea5a50ee5d9785556 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 90 ++++++++++++------------ JSBridgedType/index.html | 30 ++++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 28 ++++---- JSDate/index.html | 6 +- JSError/index.html | 12 ++-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 62 ++++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++----- JSPromise/index.html | 6 +- JSString/index.html | 66 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++++----- JSValue/index.html | 88 +++++++++++------------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 314 insertions(+), 314 deletions(-) diff --git a/Array/index.html b/Array/index.html index 68a39f778..f48bb6ef6 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 186fe40ca..12662ffba 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 46397a7c9..38ee3c5df 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%13 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 21cb35a5d..bb650ac28 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%39 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 58f12acc3..9dd8f667f 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 6429a5801..8aac0338c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ee0a63adb..dbd82ffd5 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 63c9ee5a1..e40cf6992 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 6b1d97d78..0cf35a048 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e093985d4..d253e3a98 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index efcc9f09a..62e972951 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 21b06bc88..dea2f6563 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 784b82f7f..4b8f0525a 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 44a6e80db..4e10de5d2 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f217126d0..2550fbaa2 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%7 @@ -67,30 +67,30 @@
- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index c959e6520..8e6b7c9a9 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 8a9750ae9..3ed2c68e2 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%3 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ea5e91952..2eea6968e 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%25 @@ -67,47 +67,47 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -121,38 +121,38 @@ - + JSDate->JSBridgedClass - - -JSArray - - -JSArray + + +JSTypedArray + + +JSTypedArray - - -JSArray->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 4b681e243..b7526d68f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%61 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b60d619b0..968b3ea77 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%97 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index bf62738bc..419b74d4e 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%133 @@ -69,16 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + @@ -96,19 +96,19 @@ - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 8ca2812ee..842482939 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%19 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 316cd6ecf..dbc6394f2 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%119 @@ -75,7 +75,7 @@ CustomStringConvertible
- + JSError->CustomStringConvertible @@ -90,7 +90,7 @@ - + JSError->JSBridgedClass @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index db498ea51..c17c3e3fe 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%69 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index fb1c62f15..1b571ad39 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index bcfe2b07b..11c549d21 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%73 @@ -82,28 +82,28 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + @@ -115,11 +115,26 @@ - + JSFunction->JSObject + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + + JSOneshotClosure @@ -130,26 +145,11 @@ - + JSOneshotClosure->JSObject - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 8a071a9cc..15342bd31 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index f0cca35c4..54f85b725 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%103 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index da1638d0a..6003db413 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%115 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0470b8aed..eb44940a8 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%85 @@ -85,62 +85,62 @@ ExpressibleByStringLiteral
- + JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 7851dc864..828bf3038 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index f5c2ab568..908b1e51b 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 305678175..b03675486 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 1075816c0..6a99efdd1 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%109 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index d790e449d..7bdd668a7 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%45 @@ -67,87 +67,87 @@
- + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - + -JSValue->ExpressibleByFloatLiteral +JSValue->Equatable - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7c14e3f5c..61a668f74 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 5add39c35..b36465090 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6d2e5b1b9..b4943e44d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 12ca8f220..88ab7f317 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 3b76fca15..9a17b6070 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index d1034f2ab..985b56075 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%141 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 93c57064b..b6b9a514f 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 9ffcd9e3b..45cf6f8d8 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 7d9de4ae0..e75dd2e1f 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 560b29166..1da6bef63 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%127 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 03fa3e5cf..595d7c0f8 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 90603a15f..8052ce978 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index d30990f3d..0f62c8527 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 8166b959b..5601c1ecb 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 53afbd105..17f124d6b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 0ce5409f8..2589f9b38 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 8244412eb..07e18c959 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 95ba84325..84292115f 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 6daaec7fd..8c97bb8ec 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index ba7b58263..6bbd7667b 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 236968cc278e87d67927a01656376e5fdcf486d1 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Tue, 25 Jan 2022 07:26:20 +0000 Subject: [PATCH 085/148] deploy: 6fdf8892a536258ef7e627850bfa6e89ffcc910f --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++++----- ConvertibleToJSValue/index.html | 38 +++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 96 ++++++++++++------------ JSBridgedType/index.html | 30 ++++---- JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 48 ++++++------ JSDate/index.html | 6 +- JSError/index.html | 36 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 80 ++++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++----- JSPromise/index.html | 6 +- JSString/index.html | 46 ++++++------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 80 ++++++++++---------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 360 insertions(+), 360 deletions(-) diff --git a/Array/index.html b/Array/index.html index f48bb6ef6..04b2ffa18 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 12662ffba..3b9f5bc66 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 38ee3c5df..02b8bcd9e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%51 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index bb650ac28..ad4950537 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%141 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 9dd8f667f..169fc7df0 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 8aac0338c..7bc86a2b3 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index dbd82ffd5..9e2b7415b 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index e40cf6992..6c5806a17 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 0cf35a048..00db24521 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index d253e3a98..600582d0f 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 62e972951..64a1201df 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index dea2f6563..0c195463c 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 4b8f0525a..4729a59aa 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4e10de5d2..06d358df3 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 2550fbaa2..d7b66d32c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%3 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 8e6b7c9a9..066ab287f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3ed2c68e2..cc067c029 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%15 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 2eea6968e..e48bc1171 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%19 @@ -67,65 +67,65 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + JSTypedArray @@ -136,23 +136,23 @@ - + JSTypedArray->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b7526d68f..246d1ee58 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%105 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 968b3ea77..75e6566d9 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%87 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 419b74d4e..4929e3114 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%63 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - + -JSOneshotClosure->JSClosureProtocol - - +JSClosure->JSClosureProtocol + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 842482939..d6c5d337f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%57 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index dbc6394f2..9f2e5aaa2 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%93 @@ -80,30 +80,30 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - + -JSError->JSBridgedClass +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c17c3e3fe..c143d55d0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%101 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1b571ad39..72a99815f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 11c549d21..cc1120ba9 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%75 @@ -82,73 +82,73 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - - -JSClosure - - -JSClosure + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 15342bd31..7f3257417 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 54f85b725..eb06cc82d 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%45 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 6003db413..a08625e4a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%71 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index eb44940a8..42f6c089b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%129 @@ -78,39 +78,39 @@
- + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -124,7 +124,7 @@ - + JSString->ConvertibleToJSValue @@ -139,7 +139,7 @@ - + JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 828bf3038..f98b375ee 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 908b1e51b..ce371c12a 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b03675486..9e37a02a8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6a99efdd1..e82fce93b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%39 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 7bdd668a7..3daa68908 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%113 @@ -67,75 +67,75 @@
- + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -146,7 +146,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 61a668f74..22563812d 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index b36465090..c02f2a75e 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index b4943e44d..9e074b72f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 88ab7f317..b37e9bec0 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 9a17b6070..c7005eddf 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 985b56075..048887adf 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%9 @@ -62,27 +62,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index b6b9a514f..b5d600f8b 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 45cf6f8d8..676e65617 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index e75dd2e1f..19336b41b 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1da6bef63..9381e03f1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%33 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 595d7c0f8..ac4bd1405 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 8052ce978..aae4235e3 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 0f62c8527..61ecb941b 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 5601c1ecb..7172db03c 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 17f124d6b..9dca9d1c8 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 2589f9b38..b8ed50ba9 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 07e18c959..9cdaacd0f 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 84292115f..a9b16ac8b 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 8c97bb8ec..fe1a9de90 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 6bbd7667b..133c74f89 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 4c76c92c8a88251e5bcd60b843c40429a8e0ee5d Mon Sep 17 00:00:00 2001 From: yonihemi Date: Mon, 7 Feb 2022 11:09:39 +0000 Subject: [PATCH 086/148] deploy: 5c3530e2fbdf03c464e3638df6b88f0175f99207 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++++------ ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++++------ JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 68 ++++++++++----------- JSBridgedType/index.html | 34 +++++------ JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 12 ++-- JSDate/index.html | 38 ++++++------ JSError/index.html | 40 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 64 +++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++++------ JSPromise/index.html | 6 +- JSString/index.html | 78 ++++++++++++------------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 68 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++++----- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 331 insertions(+), 331 deletions(-) diff --git a/Array/index.html b/Array/index.html index 04b2ffa18..ee2da9a07 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 3b9f5bc66..74a41d06d 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 02b8bcd9e..5085b5002 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%103 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ad4950537..ce525aee8 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%63 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 169fc7df0..b84ef5cea 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 7bc86a2b3..40c0ec6fd 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 9e2b7415b..0a950b295 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 6c5806a17..b281e4944 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 00db24521..699ddd4fd 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 600582d0f..4aa53384f 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 64a1201df..fa3f3c38e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 0c195463c..27f2cb648 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 4729a59aa..a407e5f3b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 06d358df3..de17cc540 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index d7b66d32c..23cdefb13 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%135 @@ -67,30 +67,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 066ab287f..b2a657a1d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index cc067c029..16b92666a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%95 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e48bc1171..f60e3a6c5 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%75 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + @@ -91,38 +91,38 @@ - + JSDate->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -136,23 +136,23 @@ - + JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 246d1ee58..509d955aa 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%115 @@ -68,16 +68,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -86,25 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 75e6566d9..7011003cb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%123 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 4929e3114..2e6dae9c5 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%55 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index d6c5d337f..5cb862d03 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%89 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 9f2e5aaa2..83c4a903b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%35 @@ -68,15 +68,18 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -87,23 +90,20 @@ Error - + JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c143d55d0..343fd116c 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%31 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 72a99815f..80eeba106 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cc1120ba9..cd9248ced 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%19 @@ -82,58 +82,58 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSClosure + + +JSClosure - + -JSFunction->JSObject - - +JSClosure->JSObject + + @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7f3257417..ee7af4b48 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index eb06cc82d..b233b6114 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%129 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a08625e4a..6fdd98e82 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%99 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 42f6c089b..3ff96244d 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%43 @@ -78,69 +78,69 @@
- - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index f98b375ee..22c17c436 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index ce371c12a..059851088 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 9e37a02a8..48fcfd36d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index e82fce93b..c9a2730ee 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%141 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 3daa68908..ac4f39164 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%3 @@ -67,27 +67,27 @@
- + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByFloatLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -98,44 +98,44 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -146,7 +146,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 22563812d..d9fb15a94 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c02f2a75e..9456cfccf 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9e074b72f..e9d798c30 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b37e9bec0..269a2b1e8 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index c7005eddf..a73a3f87f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 048887adf..09c8ee0d1 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%69 @@ -62,27 +62,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index b5d600f8b..2e3315559 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 676e65617..f4efa808a 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 19336b41b..302671e38 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 9381e03f1..300d1c740 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%109 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index ac4bd1405..767f73def 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index aae4235e3..addc3c5ea 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 61ecb941b..76db9807d 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 7172db03c..71e4de6a1 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 9dca9d1c8..3bae9b665 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index b8ed50ba9..46eff97ad 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9cdaacd0f..2fdd987f5 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index a9b16ac8b..ae15b7461 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index fe1a9de90..57254b6da 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 133c74f89..b0eedde31 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From d837ee732fa627f8e5260354d4cb7cd74e7fcba1 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 7 Feb 2022 21:02:15 +0000 Subject: [PATCH 087/148] deploy: 80d4451977be67c4a80aba691ee0beda986038f7 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 92 ++++++++++++------------ JSBridgedType/index.html | 46 ++++++------ JSClosure/index.html | 38 +++++----- JSClosureProtocol/index.html | 12 ++-- JSDate/index.html | 6 +- JSError/index.html | 42 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 92 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++----- JSPromise/index.html | 6 +- JSString/index.html | 70 +++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 74 +++++++++---------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 352 insertions(+), 352 deletions(-) diff --git a/Array/index.html b/Array/index.html index ee2da9a07..4d964e6b5 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 74a41d06d..524b68260 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 5085b5002..0b502e2e6 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%125 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ce525aee8..40165bd7e 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%59 @@ -76,7 +76,7 @@ - + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b84ef5cea..3f13f0042 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 40c0ec6fd..a444556d8 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 0a950b295..fefe2e9aa 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index b281e4944..1123b28bc 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 699ddd4fd..a8afc473f 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 4aa53384f..873d7784d 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index fa3f3c38e..5a711e5ed 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 27f2cb648..1d77d3238 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index a407e5f3b..84da06d1c 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index de17cc540..8c1d2ada4 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 23cdefb13..ee6ce7035 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%105 @@ -67,30 +67,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b2a657a1d..465aa87da 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 16b92666a..23e00183e 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%23 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f60e3a6c5..2b8e7e59f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%45 @@ -67,32 +67,32 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -106,53 +106,53 @@ - + JSPromise->JSBridgedClass - - -JSArray - - -JSArray + + +JSError + + +JSError - - -JSArray->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 509d955aa..9498aa3cd 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%65 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - + -JSBridgedType->CustomStringConvertible - - +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 7011003cb..563b8191c 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%111 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 2e6dae9c5..e7a5cfd5c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%117 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 5cb862d03..299dc1963 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%87 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 83c4a903b..787a3492d 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%79 @@ -68,18 +68,15 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -90,20 +87,23 @@ Error - + JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 343fd116c..86f94d9fc 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%19 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 80eeba106..dc306d98e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cd9248ced..de3cd682f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%27 @@ -81,72 +81,72 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject @@ -330,7 +330,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ee7af4b48..7c05ad577 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index b233b6114..5f5196642 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%137 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 6fdd98e82..31f120c58 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%143 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 3ff96244d..c57db29f8 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%93 @@ -78,18 +78,15 @@
- - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - + -JSString->ConvertibleToJSValue +JSString->LosslessStringConvertible @@ -105,42 +102,45 @@
- - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 22c17c436..56f57c457 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 059851088..e90413918 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 48fcfd36d..6e634083b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index c9a2730ee..14420b40a 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%39 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ac4f39164..bfaa1c2cd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -67,75 +67,75 @@
- + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral @@ -146,7 +146,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index d9fb15a94..be196a67b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 9456cfccf..60d50085f 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e9d798c30..645cf2770 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 269a2b1e8..92e2a5a7b 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a73a3f87f..5187bd78c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 09c8ee0d1..a6652c104 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%131 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 2e3315559..1fbe5661c 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index f4efa808a..c67aa8bb5 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 302671e38..bced9381d 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 300d1c740..2f72c0060 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%73 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 767f73def..740fa1b19 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index addc3c5ea..da70b07fa 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 76db9807d..0815649d0 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 71e4de6a1..9626a0da6 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 3bae9b665..bee5f3e7e 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 46eff97ad..3de3d0de4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 2fdd987f5..03c8e7c16 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index ae15b7461..505305435 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 57254b6da..dd488adb7 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index b0eedde31..7bddcd4b6 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 452e767909e122e44bacbaa1189293a9d859d0b2 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Tue, 8 Feb 2022 07:49:48 +0000 Subject: [PATCH 088/148] deploy: e0e2517108549b64eb68b34d5e0d5b11d644be09 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 68 +++++------ JSBridgedType/index.html | 46 ++++---- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 10 +- JSError/index.html | 52 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 141 +++++++++++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++--- JSPromise/index.html | 6 +- JSString/index.html | 56 ++++----- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSValue/index.html | 86 +++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 401 insertions(+), 356 deletions(-) diff --git a/Array/index.html b/Array/index.html index 4d964e6b5..a6134ee66 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 524b68260..48de95028 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 0b502e2e6..9df2d97ca 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%95 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 40165bd7e..2d6b2c6eb 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%125 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 3f13f0042..8fa32f2fc 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index a444556d8..e95633322 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index fefe2e9aa..3adc3c792 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 1123b28bc..7879c53ff 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index a8afc473f..63bf45e44 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 873d7784d..6fede1bee 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 5a711e5ed..c23c94efd 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 1d77d3238..e6b6dfdd8 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 84da06d1c..961f3d464 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 8c1d2ada4..1e3d6f6f2 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index ee6ce7035..788bba06c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%63 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 465aa87da..4dad1fa0b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 23e00183e..ec99fe0d8 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%107 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 2b8e7e59f..d2f1978cb 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%69 @@ -76,53 +76,53 @@ - + JSBridgedClass->JSBridgedType - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -136,23 +136,23 @@ - + JSDate->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 9498aa3cd..74c749ef6 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%55 @@ -67,6 +67,18 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + JSValueCompatible @@ -74,37 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 563b8191c..ec9c0ef8a 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%131 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index e7a5cfd5c..c0464b924 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%137 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 299dc1963..cf0ddebb7 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%15 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 787a3492d..2189a3319 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%7 @@ -68,42 +68,42 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + Error - -Error + +Error - + JSError->Error - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 86f94d9fc..d12c62a79 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%3 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index dc306d98e..f2acf3fe7 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index de3cd682f..4e223f5ae 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -25,7 +25,7 @@ @@ -66,89 +66,101 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%27 - + + + +%111 + JSObject - -JSObject + +JSObject Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + + + + +Hashable + +Hashable + + + +JSObject->Hashable + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSOneshotClosure - - -JSOneshotClosure +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - + -JSClosure - - -JSClosure +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + @@ -174,6 +186,7 @@

Conforms To

CustomStringConvertible
Equatable
+
Hashable
@@ -279,6 +292,38 @@

public func jsValue() -> JSValue  
+

+
+

+ hash(into:​) +

+
+
public func hash(into hasher: inout Hasher)  
+
+
+

Hashes the essential components of this value by feeding them into the +given hasher.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
hasherinout Hasher

The hasher to use when combining the components of this instance.

+
@@ -330,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7c05ad577..4c9e37630 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 5f5196642..3bc26e79a 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%49 @@ -66,33 +66,33 @@ - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 31f120c58..eecfff676 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%145 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index c57db29f8..2ad62c978 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%21 @@ -78,15 +78,15 @@
- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral @@ -97,7 +97,7 @@ Equatable - + JSString->Equatable @@ -112,35 +112,35 @@ - + JSString->ConvertibleToJSValue - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 56f57c457..94616f908 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index e90413918..18991f29b 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6e634083b..dc90f1cd1 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 14420b40a..70bcab88b 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%101 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index bfaa1c2cd..b9829285a 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%33 @@ -67,87 +67,87 @@
- + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - + -JSValue->JSValueCompatible +JSValue->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByStringLiteral +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index be196a67b..8c097cc5b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 60d50085f..a00bde49c 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 645cf2770..3d173c4e5 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 92e2a5a7b..6eb800a17 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5187bd78c..5690b67ff 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index a6652c104..7c330d018 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%83 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 1fbe5661c..c26f3bb95 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index c67aa8bb5..8a90c0702 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index bced9381d..60e85e287 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 2f72c0060..42a3382d9 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%89 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 740fa1b19..4d503b27c 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index da70b07fa..7b9be8335 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 0815649d0..9824d82f9 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 9626a0da6..0b1754aa0 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index bee5f3e7e..389affa27 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 3de3d0de4..f770d1999 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 03c8e7c16..f4b363a08 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 505305435..555c600c3 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index dd488adb7..7d4fc6733 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 7bddcd4b6..86a617214 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 3e90de9d3ed45ec13924c6f56bd238917bbc7483 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Tue, 8 Feb 2022 08:36:47 +0000 Subject: [PATCH 089/148] deploy: 940dc0637a8eba69168bb75b8d86a294411fa854 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 78 ++++++++--------- JSBridgedType/index.html | 10 +-- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 6 +- JSDate/index.html | 6 +- JSError/index.html | 50 +++++------ JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 102 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++----- JSPromise/index.html | 2 +- JSString/index.html | 78 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++----- JSValue/index.html | 70 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 307 insertions(+), 307 deletions(-) diff --git a/Array/index.html b/Array/index.html index a6134ee66..438dfe0f4 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 48de95028..71b4e655a 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 9df2d97ca..c59612221 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%85 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 2d6b2c6eb..a6c0a3f8c 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%79 @@ -76,7 +76,7 @@
- + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 8fa32f2fc..1965dd792 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index e95633322..36a2a6f17 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 3adc3c792..19183a578 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 7879c53ff..3ce6e6596 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 63bf45e44..6cb86345c 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 6fede1bee..712702c9e 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index c23c94efd..79991d64f 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index e6b6dfdd8..51835f473 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 961f3d464..0d486045b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 1e3d6f6f2..27343fd26 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 788bba06c..46de6d870 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%97 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 4dad1fa0b..22242f5d4 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ec99fe0d8..30aa3555b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%21 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d2f1978cb..efe70e965 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%7 @@ -67,77 +67,77 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 74c749ef6..25d3fc1ca 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%37 @@ -86,7 +86,7 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index ec9c0ef8a..9c5706647 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%91 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c0464b924..2f0f57d6f 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -75,7 +75,7 @@

JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index cf0ddebb7..f58122873 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%103 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 2189a3319..50048b2a4 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%71 @@ -68,42 +68,42 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index d12c62a79..5ba5c56be 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f2acf3fe7..f777c2b21 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4e223f5ae..cc632695c 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%51 @@ -81,86 +81,86 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Hashable - -Hashable + +Hashable JSObject->Hashable + + + + + +Equatable + +Equatable + + + +JSObject->Equatable - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4c9e37630..5948b4b96 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 3bc26e79a..adc9dd65c 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%25 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index eecfff676..40abfa179 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 2ad62c978..6f2ff92ea 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%109 @@ -78,69 +78,69 @@
- - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 94616f908..1716e410b 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 18991f29b..5b4c57afd 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index dc90f1cd1..a8c93548b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 70bcab88b..b65ef7b84 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%45 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b9829285a..0ea301893 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%121 @@ -67,39 +67,39 @@
- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -110,20 +110,20 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable @@ -134,20 +134,20 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 8c097cc5b..f4c561b97 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index a00bde49c..a9600c27a 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 3d173c4e5..7e6959cb9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6eb800a17..07de3e0a4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5690b67ff..ef91a3f33 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 7c330d018..36d20bf21 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%65 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index c26f3bb95..fc06bb94d 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 8a90c0702..eccb315b3 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 60e85e287..9a45b8a22 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 42a3382d9..f377f42ca 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%31 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4d503b27c..22ec5f3f6 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 7b9be8335..9b0de2dd1 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9824d82f9..4df8366f7 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 0b1754aa0..b7471fcb5 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 389affa27..ab92ebcf6 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index f770d1999..36c53f605 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index f4b363a08..9ab102c58 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 555c600c3..3b89a238e 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 7d4fc6733..eac15a789 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 86a617214..82a3f02d3 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 52ed0d67c930f55f8e0dcf22bd9c0416dc4c2c45 Mon Sep 17 00:00:00 2001 From: yonihemi Date: Wed, 9 Feb 2022 03:18:46 +0000 Subject: [PATCH 090/148] deploy: 6c31bad4b1ef18385262f5154845648c8c95ae94 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++++----- ConvertibleToJSValue/index.html | 34 +++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 80 +++++++++++----------- JSBridgedType/index.html | 30 ++++----- JSClosure/index.html | 38 +++++------ JSClosureProtocol/index.html | 52 +++++++------- JSDate/index.html | 10 +-- JSError/index.html | 36 +++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 86 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++------ JSPromise/index.html | 6 +- JSString/index.html | 82 +++++++++++----------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 80 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 361 insertions(+), 361 deletions(-) diff --git a/Array/index.html b/Array/index.html index 438dfe0f4..d3024befc 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 71b4e655a..5b0e5e857 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index c59612221..da333cfc8 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%117 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index a6c0a3f8c..c075aeb75 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%19 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 1965dd792..da8405673 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 36a2a6f17..f182cde99 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 19183a578..7179691a2 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 3ce6e6596..c517313d3 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 6cb86345c..39bc3c0f2 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 712702c9e..dce3b47d5 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 79991d64f..7171b8753 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 51835f473..f6308167e 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 0d486045b..81085d0f6 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 27343fd26..5a2e459ee 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 46de6d870..393e85c72 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%45 @@ -77,7 +77,7 @@ - + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 22242f5d4..6b5a9296d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 30aa3555b..cc4c955b9 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%109 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index efe70e965..00d504551 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%51 @@ -67,62 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass - - -JSDate - - -JSDate + + +JSTypedArray + + +JSTypedArray - + -JSDate->JSBridgedClass - - +JSTypedArray->JSBridgedClass + + - + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass @@ -141,18 +141,18 @@ - + -JSArray - - -JSArray +JSPromise + + +JSPromise - + -JSArray->JSBridgedClass +JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 25d3fc1ca..f34870225 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%71 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 9c5706647..eb3dd416b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%65 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 2f0f57d6f..7e08a18e5 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%141 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index f58122873..7ca3580f3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%91 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 50048b2a4..cc8b12cc7 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%37 @@ -68,18 +68,15 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - + -JSError->JSBridgedClass +JSError->Error @@ -95,15 +92,18 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 5ba5c56be..9f25dbc8b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%123 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index f777c2b21..bb10628e3 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cc632695c..8a8be7ca8 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%127 @@ -81,17 +81,29 @@
+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + @@ -105,33 +117,6 @@ - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - JSOneshotClosure @@ -142,25 +127,40 @@ - + JSOneshotClosure->JSObject + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + - + JSClosure - - -JSClosure + + +JSClosure JSClosure->JSObject - - + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 5948b4b96..046732315 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index adc9dd65c..f84c4e65a 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%79 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 40abfa179..1d41e5674 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%113 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 6f2ff92ea..1bf0568d5 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%25 @@ -78,69 +78,69 @@
- - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - + -JSString->ConvertibleToJSValue +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1716e410b..6e4bf14ec 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 5b4c57afd..bd191ecca 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a8c93548b..48108dbc9 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b65ef7b84..fa085c0a9 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%97 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 0ea301893..da4ed9fa2 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%3 @@ -67,27 +67,27 @@
- + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible @@ -98,56 +98,56 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index f4c561b97..b2dc5b4c4 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index a9600c27a..b9ab9f57b 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 7e6959cb9..71dbc64bc 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 07de3e0a4..c633f21f8 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index ef91a3f33..64f3cc450 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 36d20bf21..54871205e 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%85 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index fc06bb94d..9a5324dec 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index eccb315b3..35b4cdbcb 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 9a45b8a22..d3f0b887d 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index f377f42ca..8c19be8b6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%103 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 22ec5f3f6..717dda374 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 9b0de2dd1..92d9ca2e5 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 4df8366f7..e66a568b7 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index b7471fcb5..1969b0ede 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index ab92ebcf6..8078ffa29 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 36c53f605..756f8e64d 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9ab102c58..578241ae9 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 3b89a238e..91eac9d13 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index eac15a789..00f18de50 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 82a3f02d3..54d51b5cb 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 1adc8a5cad40357138431b913bf80d835bdf014b Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 22 Feb 2022 15:19:51 +0000 Subject: [PATCH 091/148] deploy: d2f0765cde9edbc8e20c6fa0871dd7e4ce99a53c --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++++------ ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 78 ++++++++++----------- JSBridgedType/index.html | 12 ++-- JSClosure/index.html | 38 +++++------ JSClosureProtocol/index.html | 10 +-- JSDate/index.html | 36 +++++----- JSError/index.html | 36 +++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 78 ++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 86 ++++++++++++------------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++++----- JSValue/index.html | 80 +++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 328 insertions(+), 328 deletions(-) diff --git a/Array/index.html b/Array/index.html index d3024befc..becbb8685 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 5b0e5e857..be851d816 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index da333cfc8..acc1ea52d 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%29 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index c075aeb75..a0cd3b0b4 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%53 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index da8405673..fc50da45c 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index f182cde99..c7c8182b2 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 7179691a2..ac56176a5 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index c517313d3..d104e2daf 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 39bc3c0f2..18618941c 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index dce3b47d5..d88b35d60 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 7171b8753..650cac118 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index f6308167e..6c1d9e5ea 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 81085d0f6..765800134 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 5a2e459ee..4d0d69bce 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 393e85c72..751f2e371 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%35 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6b5a9296d..6f11d4374 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index cc4c955b9..0be054c11 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%119 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 00d504551..567aaeaf5 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%135 @@ -76,83 +76,83 @@
- + JSBridgedClass->JSBridgedType - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - + -JSDate->JSBridgedClass +JSPromise->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index f34870225..fe9b4e389 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%45 @@ -74,7 +74,7 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -86,7 +86,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index eb3dd416b..d44f72c06 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%11 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 7e08a18e5..7f5ea5963 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%3 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 7ca3580f3..1bd8c7bf1 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%23 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index cc8b12cc7..8ec3baec5 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%127 @@ -68,15 +68,18 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass @@ -92,18 +95,15 @@ - - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - + -JSError->JSBridgedClass +JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 9f25dbc8b..430a4a8c4 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%41 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index bb10628e3..db7f457c7 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 8a8be7ca8..1752d4585 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%87 @@ -81,29 +81,29 @@
- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + @@ -112,25 +112,25 @@ Hashable - + JSObject->Hashable - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + @@ -142,23 +142,23 @@ - + JSFunction->JSObject - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSObject + + +JSOneshotClosure->JSObject @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 046732315..b12fd66e2 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index f84c4e65a..51726ca8f 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%101 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 1d41e5674..15cb9c0a4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%123 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 1bf0568d5..fc1df3358 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%107 @@ -78,69 +78,69 @@
- - -Equatable - -Equatable - - - -JSString->Equatable - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - +LosslessStringConvertible - - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 6e4bf14ec..d5222facc 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index bd191ecca..c1865caf4 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 48108dbc9..c59c2f78b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index fa085c0a9..12e96db9f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%17 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index da4ed9fa2..1789ec96b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%71 @@ -67,75 +67,75 @@
- + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -146,7 +146,7 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index b2dc5b4c4..c5958f88e 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index b9ab9f57b..8b9fbd23a 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 71dbc64bc..8c419acb7 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c633f21f8..129f12b8a 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 64f3cc450..0d6a3e037 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 54871205e..cbbf6a2e1 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%65 @@ -69,7 +69,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -81,7 +81,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 9a5324dec..0ae77c9a7 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 35b4cdbcb..43d81145e 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index d3f0b887d..6066457c9 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 8c19be8b6..137045539 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%59 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 717dda374..bc868aead 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 92d9ca2e5..1d8360793 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index e66a568b7..378712b98 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 1969b0ede..17a453f69 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 8078ffa29..432c7d79a 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 756f8e64d..29a654b8c 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 578241ae9..6851dc9ec 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 91eac9d13..19a15edc7 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 00f18de50..a2cdf0a65 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 54d51b5cb..d0e900788 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 632b25b15b70be6e9d6b27900b0f6056d8822690 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 24 Mar 2022 11:42:54 +0000 Subject: [PATCH 092/148] deploy: 356d48e63ed44bd799362c088c25533f5aa95973 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 104 +++++++++++------------ JSBridgedType/index.html | 30 +++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 ++++---- JSDate/index.html | 38 ++++----- JSError/index.html | 46 +++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 102 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++----- JSPromise/index.html | 6 +- JSString/index.html | 54 ++++++------ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSValue/index.html | 76 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 13 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 347 insertions(+), 346 deletions(-) diff --git a/Array/index.html b/Array/index.html index becbb8685..c50a84ceb 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index be851d816..7d8d725e9 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index acc1ea52d..3bd2f1599 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%85 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index a0cd3b0b4..ddb2bbaa2 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%143 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index fc50da45c..90610fb4a 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index c7c8182b2..897bec329 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ac56176a5..1dc1fe762 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index d104e2daf..bf5d51a29 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 18618941c..46dbfc6b1 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index d88b35d60..8a00d0360 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 650cac118..b85e55a38 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 6c1d9e5ea..b9c5ff5f2 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 765800134..44d960617 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4d0d69bce..efed04727 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 751f2e371..c6e0c9747 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%21 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6f11d4374..b2ee00df7 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 0be054c11..5094ede40 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%125 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 567aaeaf5..98be4bae5 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%43 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass - - -JSDate - - -JSDate + + +JSError + + +JSError - + -JSDate->JSBridgedClass - - +JSError->JSBridgedClass + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass + + + + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fe9b4e389..e22dfc5e5 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%73 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d44f72c06..0e5ff06b8 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%63 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 7f5ea5963..f7e6ce8f3 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%91 @@ -80,33 +80,33 @@
- + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 1bd8c7bf1..07eb9bfbe 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%15 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 8ec3baec5..da241200b 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%129 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 430a4a8c4..d6c8ec011 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%69 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index db7f457c7..36c9180eb 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 1752d4585..f1e7e793f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%111 @@ -81,29 +81,17 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + @@ -112,55 +100,67 @@ Hashable - + JSObject->Hashable - - -JSClosure - - -JSClosure + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index b12fd66e2..398cda661 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 51726ca8f..c8ce042b9 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%105 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 15cb9c0a4..4fcc2486e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%81 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index fc1df3358..acb2e3a6e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%3 @@ -78,42 +78,42 @@
- - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - +ExpressibleByStringLiteral - - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - + + -JSString->Equatable +JSString->ConvertibleToJSValue @@ -124,7 +124,7 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible @@ -139,7 +139,7 @@ - + JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index d5222facc..86ece97b8 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c1865caf4..808b71cea 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index c59c2f78b..31db97f85 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 12e96db9f..b0843518e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%99 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 1789ec96b..05e9ceac6 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%27 @@ -67,51 +67,51 @@
- + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSValue->Equatable +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -127,27 +127,27 @@ - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index c5958f88e..0971e7a6f 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 8b9fbd23a..fb37e849d 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 8c419acb7..a31e9ba90 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 129f12b8a..1d7972978 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 0d6a3e037..4cf15d82e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index cbbf6a2e1..dc357d8f3 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -37,7 +37,8 @@

-
public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  
+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
+public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  
@@ -47,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%57 @@ -69,7 +70,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -81,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -157,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 0ae77c9a7..c6ce52435 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 43d81145e..abcf96ebc 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6066457c9..988b5a15e 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 137045539..e009ed5ff 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%137 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index bc868aead..361e676b9 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 1d8360793..d4fe0467d 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 378712b98..d9b25e3b4 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 17a453f69..243f1cec7 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 432c7d79a..8d26efc67 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 29a654b8c..43799f15d 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 6851dc9ec..2a8791dfc 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 19a15edc7..10181adc4 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index a2cdf0a65..8dc9a74ea 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index d0e900788..612421816 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From e84f6b528f491067ff7ac37f08f439c749027e3d Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 31 Mar 2022 08:35:36 +0000 Subject: [PATCH 093/148] deploy: 6ae7311fc4c711a14956d4186a423e65a4dc76c3 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 34 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 98 ++++++++++----------- JSBridgedType/index.html | 50 +++++------ JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 52 +++++------ JSDate/index.html | 38 ++++---- JSError/index.html | 50 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 106 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 58 ++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 86 +++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 394 insertions(+), 394 deletions(-) diff --git a/Array/index.html b/Array/index.html index c50a84ceb..03f1e7059 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 7d8d725e9..05d53e8a9 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 3bd2f1599..7a4e2bb9e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%53 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ddb2bbaa2..9f31dc74c 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%71 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 90610fb4a..f5fb334b0 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 897bec329..3a422af6c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 1dc1fe762..ae28d2986 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index bf5d51a29..779529578 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 46dbfc6b1..6c46597f9 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8a00d0360..8fc832f63 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index b85e55a38..c4bde9221 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index b9c5ff5f2..ba6e1d05f 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 44d960617..5c3098ee6 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index efed04727..c5761e25e 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index c6e0c9747..b57e8fe7c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%59 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b2ee00df7..b774095d8 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5094ede40..e0bd7edc9 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%3 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 98be4bae5..b33e5e952 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%121 @@ -67,92 +67,92 @@ - + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - + + + + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index e22dfc5e5..f678fbd80 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%141 @@ -67,44 +67,44 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - + -JSBridgedType->JSValueCompatible - - +JSBridgedType->CustomStringConvertible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0e5ff06b8..4ca244a36 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%39 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index f7e6ce8f3..3cf8d5c9d 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%17 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 07eb9bfbe..67a918ba5 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%135 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index da241200b..113bca569 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%45 @@ -68,42 +68,42 @@
- - -Error - -Error - - - -JSError->Error - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible + + + + + +Error + +Error + + + +JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index d6c8ec011..39ff5012e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%89 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 36c9180eb..77824a6d8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index f1e7e793f..c3bc7d2fd 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%25 @@ -81,86 +81,86 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - + -JSClosure->JSObject - - +JSOneshotClosure->JSObject + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 398cda661..7c770bc18 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index c8ce042b9..0bc7b3cbb 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%115 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4fcc2486e..b437c46a0 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%7 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index acb2e3a6e..87867a7c0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%77 @@ -85,35 +85,38 @@ ExpressibleByStringLiteral
- + JSString->ExpressibleByStringLiteral - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -124,23 +127,20 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 86ece97b8..088df1c46 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 808b71cea..e8d100b5e 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 31db97f85..316aa77d8 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b0843518e..452f0b4aa 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%109 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 05e9ceac6..3dd5788c5 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%93 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - + -JSValue->ExpressibleByStringLiteral +JSValue->JSValueCompatible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 0971e7a6f..b30f5ad19 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index fb37e849d..4d3bf9319 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a31e9ba90..edfdeb074 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 1d7972978..ade2f8772 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 4cf15d82e..5f3fb506b 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index dc357d8f3..6bd59bd72 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%65 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index c6ce52435..fd4a39985 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index abcf96ebc..51705a613 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 988b5a15e..6c7886ece 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e009ed5ff..7e9226e7a 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%11 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 361e676b9..eca7887dc 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index d4fe0467d..6cff7ea73 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index d9b25e3b4..fc69bf891 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 243f1cec7..25e081478 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 8d26efc67..0240b5969 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 43799f15d..b0d12e288 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 2a8791dfc..4e241618e 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 10181adc4..bd67b3790 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 8dc9a74ea..e97d33d84 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 612421816..4a77ff00a 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From ec64a6986fee990469e9bccd25f5a55858ef15b9 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 31 Mar 2022 10:07:56 +0000 Subject: [PATCH 094/148] deploy: cffe72cb975e7500aced5df5f005ea616a7c6f96 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 38 ++++++------ Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 ++-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 74 ++++++++++++------------ JSBridgedType/index.html | 32 +++++----- JSClosure/index.html | 10 ++-- JSClosureProtocol/index.html | 36 ++++++------ JSDate/index.html | 10 ++-- JSError/index.html | 40 ++++++------- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 68 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 54 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++++------ JSValue/index.html | 66 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 ++-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++++------ UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 311 insertions(+), 311 deletions(-) diff --git a/Array/index.html b/Array/index.html index 03f1e7059..88444b616 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 05d53e8a9..2d6ed024f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7a4e2bb9e..5bed85372 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%21 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 9f31dc74c..e5af55eb6 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%9 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index f5fb334b0..a3755c4e7 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 3a422af6c..170e460fe 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ae28d2986..26ca5d3be 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 779529578..a6ad84684 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 6c46597f9..7c26d7077 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8fc832f63..6676c0134 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index c4bde9221..2333744b2 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index ba6e1d05f..7c21a93bc 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 5c3098ee6..250e51e54 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index c5761e25e..c1f5ca419 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b57e8fe7c..34264522c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%41 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b774095d8..1f5388e44 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e0bd7edc9..3a87a6da0 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%135 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index b33e5e952..428836a06 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%47 @@ -76,7 +76,7 @@
- + JSBridgedClass->JSBridgedType @@ -91,68 +91,68 @@ - + JSDate->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index f678fbd80..9021fee29 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%69 @@ -74,37 +74,37 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 4ca244a36..6b69090a7 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%91 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 3cf8d5c9d..52c30bb9c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%61 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 67a918ba5..f110dd071 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%109 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 113bca569..27263a394 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%27 @@ -68,30 +68,30 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 39ff5012e..c17a8edbc 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%131 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 77824a6d8..17d909cac 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index c3bc7d2fd..d85cfffbe 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%77 @@ -94,73 +94,73 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSObject - - + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7c770bc18..f32deaaf7 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 0bc7b3cbb..2c95366d5 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%15 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index b437c46a0..83bb346f3 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%139 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 87867a7c0..1996efb6c 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%97 @@ -85,50 +85,50 @@ ExpressibleByStringLiteral
- + JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - +LosslessStringConvertible - - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 088df1c46..c1740e807 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index e8d100b5e..106e94ac9 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 316aa77d8..10a7885de 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 452f0b4aa..8d46709c3 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%3 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 3dd5788c5..a42f50113 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%115 @@ -74,20 +74,20 @@ CustomStringConvertible
- + JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByFloatLiteral @@ -103,51 +103,51 @@ - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index b30f5ad19..9102bc24e 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 4d3bf9319..3350f58db 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index edfdeb074..d9a892f85 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ade2f8772..0fa0b4cb4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5f3fb506b..34dcd5b3e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 6bd59bd72..2ec218e7c 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%143 @@ -70,7 +70,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -82,7 +82,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index fd4a39985..cc799db91 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 51705a613..5b41b34ea 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6c7886ece..79b0e7113 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7e9226e7a..c743d1b01 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%35 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index eca7887dc..195583b7d 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 6cff7ea73..53bfa5528 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index fc69bf891..eb2e32a05 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 25e081478..90c5f5482 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 0240b5969..130b4447e 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index b0d12e288..6979ceee2 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 4e241618e..3d6d0e120 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index bd67b3790..1ac5a3c09 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index e97d33d84..891cb5d32 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 4a77ff00a..4034cd599 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 664a4da7a855be4cb7263766334bba117ef9dd32 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 31 Mar 2022 22:10:44 +0000 Subject: [PATCH 095/148] deploy: 72314d7d56b9cadbb7cf1d48541e4053ea415663 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 84 +++++++++--------- JSBridgedType/index.html | 32 +++---- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 36 ++++---- JSDate/index.html | 38 ++++---- JSError/index.html | 48 +++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 106 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 80 ++++++++--------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSValue/index.html | 86 +++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 386 insertions(+), 386 deletions(-) diff --git a/Array/index.html b/Array/index.html index 88444b616..2249a4361 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 2d6ed024f..1658fbe09 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 5bed85372..6fdba2be8 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%133 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e5af55eb6..496c21687 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%77 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index a3755c4e7..17f353465 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 170e460fe..9fc23414e 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 26ca5d3be..baa224326 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index a6ad84684..994398208 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 7c26d7077..897fabc74 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 6676c0134..b4b20469c 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 2333744b2..b894e920f 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 7c21a93bc..790c05d8d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 250e51e54..0189eea6e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index c1f5ca419..51819eeca 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 34264522c..94325184f 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%113 @@ -77,7 +77,7 @@ - + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 1f5388e44..e5d374ded 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3a87a6da0..03b65c384 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%41 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 428836a06..472efe4c1 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%119 @@ -81,78 +81,78 @@
- + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 9021fee29..89c0ef92b 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%83 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6b69090a7..d036174cc 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%3 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 52c30bb9c..9a9412024 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%23 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index f110dd071..dfafed4e9 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%139 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 27263a394..278939145 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%45 @@ -68,42 +68,42 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - + + - + Error - -Error + +Error JSError->Error + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c17a8edbc..7094384c8 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%145 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 17d909cac..e36b9caf8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index d85cfffbe..55ea4ca76 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%9 @@ -81,86 +81,86 @@
- - -Hashable - -Hashable + + +Equatable + +Equatable - - -JSObject->Hashable - - + + +JSObject->Equatable + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + -Equatable +Hashable -Equatable +Hashable - - -JSObject->Equatable + + +JSObject->Hashable - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f32deaaf7..1f605e849 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 2c95366d5..b8c89cf7a 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%35 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 83bb346f3..2915e401a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%31 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 1996efb6c..15f71c660 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%59 @@ -78,69 +78,69 @@
- - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSString->Equatable +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c1740e807..19cca6622 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 106e94ac9..dd9243c62 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 10a7885de..832ae95e3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 8d46709c3..314c8da24 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%71 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index a42f50113..22307c7b9 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%91 @@ -67,87 +67,87 @@
- + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 9102bc24e..204464bf5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3350f58db..b96861ffe 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d9a892f85..79a3bd187 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 0fa0b4cb4..9e61d1297 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 34dcd5b3e..1d554f7c2 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 2ec218e7c..b575b452e 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%53 @@ -63,27 +63,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index cc799db91..4e7a4de8e 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 5b41b34ea..42bdc7406 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 79b0e7113..4dc274397 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c743d1b01..5a6b1c7b3 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%107 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 195583b7d..63f415497 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 53bfa5528..f51b18685 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index eb2e32a05..985b86fea 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 90c5f5482..ed23947e3 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 130b4447e..38a823230 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 6979ceee2..1874dca4c 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 3d6d0e120..6320bf655 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 1ac5a3c09..3f837656a 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 891cb5d32..cb04a4a01 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 4034cd599..5ece905cd 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From ddacf38a544f679696542990bf94e3ac5860d7ae Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 31 Mar 2022 22:12:14 +0000 Subject: [PATCH 096/148] deploy: 2011cc0422eb820c36d7cc275e0992ec5ca9ab34 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 34 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 72 ++++++++-------- JSBridgedType/index.html | 32 +++---- JSClosure/index.html | 38 ++++----- JSClosureProtocol/index.html | 34 ++++---- JSDate/index.html | 6 +- JSError/index.html | 38 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 102 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 72 ++++++++-------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++----- JSValue/index.html | 54 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 337 insertions(+), 337 deletions(-) diff --git a/Array/index.html b/Array/index.html index 2249a4361..ce27f6b89 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 1658fbe09..296199d87 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 6fdba2be8..cc438a66d 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%143 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 496c21687..3f0ec3ba0 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%133 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 17f353465..6e872c9c7 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 9fc23414e..efdb02ef2 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index baa224326..be145228d 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 994398208..fca73a849 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 897fabc74..3cc0e025d 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index b4b20469c..37a28f0fe 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index b894e920f..5d804d733 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 790c05d8d..861b853dc 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 0189eea6e..806da55d4 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 51819eeca..e3fc22938 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 94325184f..6b5fe5351 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%87 @@ -67,30 +67,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e5d374ded..c3bba148a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 03b65c384..4c7168a6a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%139 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 472efe4c1..08e936a9f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%3 @@ -67,32 +67,47 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass + + + + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass @@ -106,38 +121,23 @@ - + JSError->JSBridgedClass - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - - - -JSDate - +JSPromise + -JSDate +JSPromise - + -JSDate->JSBridgedClass +JSPromise->JSBridgedClass @@ -151,7 +151,7 @@ - + JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 89c0ef92b..5f42a973d 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%115 @@ -80,31 +80,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d036174cc..07f4179bd 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%25 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 9a9412024..60c123439 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%17 @@ -69,31 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index dfafed4e9..5fd1915b2 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%127 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 278939145..622cdfc9e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%73 @@ -68,30 +68,30 @@
+ + +Error + +Error + + + +JSError->Error + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -Error - -Error - - - -JSError->Error @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 7094384c8..62582ad28 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%31 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e36b9caf8..ea07ad1da 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 55ea4ca76..9c9830c88 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%53 @@ -81,86 +81,86 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Hashable - -Hashable + +Hashable JSObject->Hashable - - + + - + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - - -JSClosure - - -JSClosure + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1f605e849..18f57276d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index b8c89cf7a..1918a8a2b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%67 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2915e401a..8662558b3 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%123 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 15f71c660..b9e0c507a 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%41 @@ -78,57 +78,57 @@
- - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - + -JSString->ConstructibleFromJSValue +JSString->LosslessStringConvertible - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - + + -JSString->Equatable +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue @@ -139,7 +139,7 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 19cca6622..4491bf58d 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index dd9243c62..165398873 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 832ae95e3..df663614d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 314c8da24..ba946a0f4 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%81 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 22307c7b9..888b73c72 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%99 @@ -67,51 +67,51 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - + -JSValue->ExpressibleByStringLiteral +JSValue->Equatable - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -122,7 +122,7 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral @@ -134,7 +134,7 @@ CustomStringConvertible - + JSValue->CustomStringConvertible @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 204464bf5..48b165b38 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index b96861ffe..5cae7f1f0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 79a3bd187..36e84418d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 9e61d1297..8e173f268 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1d554f7c2..235abdaab 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index b575b452e..d40d11945 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%35 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 4e7a4de8e..9230d4acd 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 42bdc7406..285703baf 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 4dc274397..cd3e2d4e1 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 5a6b1c7b3..e4d7ca90f 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%93 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 63f415497..a877bbcd0 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index f51b18685..bce39de9f 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 985b86fea..33f27357c 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index ed23947e3..e20efa360 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 38a823230..91bbc3f13 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1874dca4c..82ad5dd70 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 6320bf655..7e4287433 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 3f837656a..c99541f24 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index cb04a4a01..ba7a3785e 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 5ece905cd..9fcb5821a 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From a61ea59d93e73dd5a2e29d954ef22636615be9df Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 1 Apr 2022 16:33:08 +0000 Subject: [PATCH 097/148] deploy: 0a38d705e0c310f236599e2a0d62afa8012578db --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++++----- ConvertibleToJSValue/index.html | 34 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 84 +++++++++++----------- JSBridgedType/index.html | 52 +++++++------- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 34 ++++----- JSDate/index.html | 36 +++++----- JSError/index.html | 40 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 88 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++++----- JSPromise/index.html | 6 +- JSString/index.html | 52 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSValue/index.html | 68 +++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 55 files changed, 350 insertions(+), 350 deletions(-) diff --git a/Array/index.html b/Array/index.html index ce27f6b89..e2eda4ee8 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 296199d87..cd488f0fc 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index cc438a66d..25896b5cf 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%63 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 3f0ec3ba0..b60b39cc0 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%51 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 6e872c9c7..72b893e38 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index efdb02ef2..91def5319 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index be145228d..edd49a349 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index fca73a849..a34bb99ef 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 3cc0e025d..2576e4b63 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 37a28f0fe..2ee3cc719 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 5d804d733..f422fc3ba 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 861b853dc..4c9a75f6a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 806da55d4..5793616be 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index e3fc22938..e2a47c7cd 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 6b5fe5351..a76619903 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%75 @@ -74,7 +74,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index c3bba148a..872dbe214 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 4c7168a6a..976f1dcec 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%39 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 08e936a9f..fd0f21d1c 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%19 @@ -67,64 +67,64 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - - -JSError - - -JSError + + +JSDate + + +JSDate - - -JSError->JSBridgedClass - - + + +JSDate->JSBridgedClass + + @@ -136,23 +136,23 @@ - + JSPromise->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 5f42a973d..3a9d18b98 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%141 @@ -67,44 +67,44 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - - -JSBridgedType->JSValueCompatible - - + + +JSBridgedType->CustomStringConvertible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 07f4179bd..8ad16df63 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%33 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 60c123439..d508e91bd 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%133 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - + -JSOneshotClosure->JSClosureProtocol +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 5fd1915b2..722ec5e5d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%85 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 622cdfc9e..7fda3e9ad 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%43 @@ -75,35 +75,35 @@ Error
- + JSError->Error + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 62582ad28..3af42a0bf 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%81 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index ea07ad1da..63c061473 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 9c9830c88..4e630ef86 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%91 @@ -81,18 +81,6 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Hashable @@ -105,60 +93,72 @@ - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSOneshotClosure + + +JSOneshotClosure - + -JSFunction->JSObject - - +JSOneshotClosure->JSObject + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 18f57276d..16129f7c4 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1918a8a2b..56377f640 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%3 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 8662558b3..2a9ed26f0 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%15 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index b9e0c507a..787fa0cce 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%121 @@ -85,7 +85,7 @@ Equatable
- + JSString->Equatable @@ -97,50 +97,50 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - + -JSString->ConvertibleToJSValue +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 4491bf58d..dad69d8f4 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 165398873..c4385dcb1 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index df663614d..6dbeb6e6b 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ba946a0f4..b261f5ff2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%69 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 888b73c72..9f13736c6 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%105 @@ -74,44 +74,44 @@ ExpressibleByStringLiteral
- + JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible @@ -122,32 +122,32 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 48b165b38..5f1196685 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 5cae7f1f0..8f25cbefa 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 36e84418d..67ba0d27f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 8e173f268..4fb23edc6 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 235abdaab..96c5d630e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index d40d11945..90cdc62b4 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%57 @@ -70,7 +70,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -82,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 9230d4acd..5b54b714a 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 285703baf..05b56830d 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index cd3e2d4e1..ce0ef9f53 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e4d7ca90f..8a6ece1d3 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%9 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index a877bbcd0..145d03b08 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index bce39de9f..f671e2df9 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 33f27357c..e9fb9f20a 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index e20efa360..07fa0f320 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 91bbc3f13..5e2c30b44 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 82ad5dd70..a2255ebba 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 7e4287433..bacb52ffb 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index c99541f24..261c1bf53 100644 --- a/index.html +++ b/index.html @@ -478,7 +478,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index ba7a3785e..621b19e62 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 9fcb5821a..829f57b1b 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 38636664338c9036a44f6332bc47403413b95610 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 1 Apr 2022 21:06:49 +0000 Subject: [PATCH 098/148] deploy: 081784b34ad94c91eddccca58f1592ce181328ad --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +-- ConvertibleToJSValue/index.html | 38 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 94 ++++---- JSBridgedType/index.html | 32 +-- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 10 +- JSError/index.html | 36 +-- JSFunction/index.html | 8 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 121 ++++++---- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +-- JSPromise/index.html | 6 +- JSString/index.html | 86 +++---- JSSymbol/index.html | 282 ++++++++++++++++++++++ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +-- JSValue/index.html | 100 ++++---- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 51 ++++ index.html | 26 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 51 ++++ 58 files changed, 846 insertions(+), 405 deletions(-) create mode 100644 JSSymbol/index.html create mode 100644 getJSValue(this_symbol_)/index.html create mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/Array/index.html b/Array/index.html index e2eda4ee8..132226616 100644 --- a/Array/index.html +++ b/Array/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index cd488f0fc..a02647d5a 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 25896b5cf..ba5d1af12 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%3 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b60b39cc0..6a1e5a2d6 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%65 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 72b893e38..cb09af54b 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -68,7 +68,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 91def5319..65ccc3c98 100644 --- a/Double/index.html +++ b/Double/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index edd49a349..d0b2be910 100644 --- a/Float/index.html +++ b/Float/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index a34bb99ef..c72b7ecff 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 2576e4b63..37eae4656 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 2ee3cc719..8170035e4 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index f422fc3ba..f89a63ea7 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 4c9a75f6a..1b61f4b27 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 5793616be..20205c78e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index e2a47c7cd..1486ca946 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index a76619903..f132e1485 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%77 @@ -67,30 +67,30 @@
- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 872dbe214..ec7eaad76 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 976f1dcec..970bf1902 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%91 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index fd0f21d1c..94b87fea5 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%109 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - + -JSTypedArray->JSBridgedClass +JSError->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSDate - - -JSDate + + +JSArray + + +JSArray - - -JSDate->JSBridgedClass - - + + +JSArray->JSBridgedClass + + - + JSPromise - - -JSPromise + + +JSPromise JSPromise->JSBridgedClass - - + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 3a9d18b98..86bead2b8 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%147 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -187,7 +187,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8ad16df63..3fb50c9f1 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%71 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index d508e91bd..95457289b 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%83 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 722ec5e5d..c92a83a99 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%37 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 7fda3e9ad..a9cc695b3 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%139 @@ -80,30 +80,30 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -246,7 +246,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3af42a0bf..bd99221aa 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%101 @@ -266,7 +266,7 @@

construct(from:​)

-
public override class func construct(from value: JSValue) -> Self?  
+
override public class func construct(from value: JSValue) -> Self?  

@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 63c061473..725eccad1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4e630ef86..cc609e924 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,101 +66,116 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%91 - + + + +%49 + JSObject - -JSObject + +JSObject - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSObject->CustomStringConvertible - - - - - -Equatable - -Equatable - - - -JSObject->Equatable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSObject - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + + + + +JSSymbol + + +JSSymbol + + + + + +JSSymbol->JSObject + + @@ -181,6 +196,8 @@

Subclasses

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

+
JSSymbol
+

Conforms To

@@ -375,7 +392,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 16129f7c4..6de740a70 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 56377f640..970e23505 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%133 @@ -66,33 +66,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2a9ed26f0..7d6998dfe 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%123 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 787fa0cce..a2f7e9a78 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%9 @@ -78,69 +78,69 @@
- - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - +ExpressibleByStringLiteral - - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - +LosslessStringConvertible - - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html new file mode 100644 index 000000000..77d5e7149 --- /dev/null +++ b/JSSymbol/index.html @@ -0,0 +1,282 @@ + + + + + + JavaScriptKit - JSSymbol + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + JSSymbol +

+ +
+
public class JSSymbol: JSObject  
+
+
+ +
+ + + + + + +%105 + + + +JSSymbol + + +JSSymbol + + + + + +JSObject + + +JSObject + + + + + +JSSymbol->JSObject + + + + + + + + +
+

Superclass

+
+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
+
public init(_ description: JSString)  
+
+
+
+

+ init(_:​) +

+
+
@_disfavoredOverload
+    public convenience init(_ description: String)  
+
+
+
+
+

Properties

+ +
+

+ name +

+
+
public var name: String?  
+
+
+
+

+ async​Iterator +

+
+
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
+
+
+
+

+ has​Instance +

+
+
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
+
+
+
+

+ is​Concat​Spreadable +

+
+
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
+
+
+
+

+ iterator +

+
+
public static let iterator: JSSymbol! = Symbol.iterator.symbol
+
+
+
+

+ match +

+
+
public static let match: JSSymbol! = Symbol.match.symbol
+
+
+
+

+ match​All +

+
+
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
+
+
+
+

+ replace +

+
+
public static let replace: JSSymbol! = Symbol.replace.symbol
+
+
+
+

+ search +

+
+
public static let search: JSSymbol! = Symbol.search.symbol
+
+
+
+

+ species +

+
+
public static let species: JSSymbol! = Symbol.species.symbol
+
+
+
+

+ split +

+
+
public static let split: JSSymbol! = Symbol.split.symbol
+
+
+
+

+ to​Primitive +

+
+
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
+
+
+
+

+ to​String​Tag +

+
+
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
+
+
+
+

+ unscopables +

+
+
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
+
+
+
+
+

Methods

+ +
+

+ `for`(key:​) +

+
+
public static func `for`(key: JSString) -> JSSymbol  
+
+
+
+

+ `for`(key:​) +

+
+
@_disfavoredOverload
+    public static func `for`(key: String) -> JSSymbol  
+
+
+
+

+ key(for:​) +

+
+
public static func key(for symbol: JSSymbol) -> JSString?  
+
+
+
+

+ key(for:​) +

+
+
@_disfavoredOverload
+    public static func key(for symbol: JSSymbol) -> String?  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index dad69d8f4..f86a741d9 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c4385dcb1..71ccf7e7f 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6dbeb6e6b..399ee9924 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b261f5ff2..ea39e6f4c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%127 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 9f13736c6..214934bcc 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%21 @@ -67,15 +67,15 @@
- + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible @@ -86,7 +86,7 @@ Equatable - + JSValue->Equatable @@ -98,56 +98,56 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -200,7 +200,7 @@

init(nil​Literal:​)

-
public init(nilLiteral: ())  
+
public init(nilLiteral _: ())  
@@ -262,6 +262,14 @@

case function(JSFunction) 
+

+
+

+ symbol +

+
+
case symbol(JSSymbol) 
+
@@ -357,6 +365,14 @@

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

+

+
+
+

+ symbol +

+
+
public var symbol: JSSymbol?  
@@ -418,7 +434,7 @@

from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
+
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
@@ -426,7 +442,7 @@

string(_:​)

-
public static func string(_ value: String) -> JSValue  
+
static func string(_ value: String) -> JSValue  
@@ -435,7 +451,7 @@

@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
+ static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -469,7 +485,7 @@

@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    public static func function(_ closure: JSClosure) -> JSValue  
+ static func function(_ closure: JSClosure) -> JSValue
@@ -477,7 +493,7 @@

is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool  
+
func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -516,7 +532,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 5f1196685..a6af1c434 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 8f25cbefa..99fd78cf8 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 67ba0d27f..f6c60106d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 4fb23edc6..1a75e65c9 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 96c5d630e..ed7b62c6d 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 90cdc62b4..b07ed03af 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%43 @@ -63,27 +63,27 @@ - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 5b54b714a..7094f6a6c 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 05b56830d..b3f33cd9c 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ce0ef9f53..53c6d783c 100644 --- a/String/index.html +++ b/String/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 8a6ece1d3..4568e1804 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%95 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 145d03b08..0ae1915c4 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index f671e2df9..e90f72878 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index e9fb9f20a..853db3eb1 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 07fa0f320..255076a20 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 5e2c30b44..f852b9359 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index a2255ebba..1c91e86c5 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index bacb52ffb..d0b98e477 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html new file mode 100644 index 000000000..3a27801ea --- /dev/null +++ b/getJSValue(this_symbol_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - getJSValue(this:symbol:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +get​JSValue(this:​symbol:​) +

+ +
+
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/index.html b/index.html index 261c1bf53..a9caf736c 100644 --- a/index.html +++ b/index.html @@ -178,6 +178,14 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ + JSSymbol + +
+
+
@@ -385,6 +393,22 @@

Functions

+
+
+ + get​JSValue(this:​symbol:​) + +
+
+ +
+
+ + set​JSValue(this:​symbol:​value:​) + +
+
+
@@ -478,7 +502,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 621b19e62..a11547674 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 829f57b1b..704ba1dd2 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html new file mode 100644 index 000000000..fce49725f --- /dev/null +++ b/setJSValue(this_symbol_value_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - setJSValue(this:symbol:value:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +set​JSValue(this:​symbol:​value:​) +

+ +
+
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + From a940afbb355f2b1d5bacebd3b475fe083b274236 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Mon, 4 Apr 2022 15:55:56 +0000 Subject: [PATCH 099/148] deploy: 95d0c4cd78b48ffc7e19c618d57c3244917be09a --- Array/index.html | 26 ++--- Bool/index.html | 24 +++-- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 58 ++++++----- Dictionary/index.html | 26 ++--- Double/index.html | 24 +++-- Float/index.html | 24 +++-- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 22 ++--- Int16/index.html | 22 ++--- Int32/index.html | 22 ++--- Int64/index.html | 24 +++-- Int8/index.html | 22 ++--- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 112 ++++++++++----------- JSBridgedType/index.html | 58 ++++------- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 40 ++++---- JSDate/index.html | 6 +- JSError/index.html | 58 +++++------ JSFunction/index.html | 24 ++--- JSFunctionRef/index.html | 2 +- JSObject/index.html | 114 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 78 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 8 +- JSUInt8ClampedArray/index.html | 112 +++++++++++++++++++++ JSValue/index.html | 82 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 28 +++--- Optional/index.html | 24 +++-- RawJSValue/index.html | 14 +-- String/index.html | 24 +++-- TypedArrayElement/index.html | 34 +++---- UInt/index.html | 22 ++--- UInt16/index.html | 22 ++--- UInt32/index.html | 22 ++--- UInt64/index.html | 24 +++-- UInt8/index.html | 22 ++--- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 10 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 59 files changed, 774 insertions(+), 630 deletions(-) create mode 100644 JSUInt8ClampedArray/index.html diff --git a/Array/index.html b/Array/index.html index 132226616..ee3255790 100644 --- a/Array/index.html +++ b/Array/index.html @@ -25,7 +25,7 @@ @@ -35,26 +35,30 @@

Extensions on Array

-
-

Methods

+
+

Properties

-
+

- js​Value() + js​Value

-
public func jsValue() -> JSValue  
+
public var jsValue: JSValue  
-
+

- js​Value() + js​Value

-
public func jsValue() -> JSValue  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

construct(from:​)

@@ -68,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index a02647d5a..800c8f409 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on Bool

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Bool?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Bool?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ba5d1af12..42819864d 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%79 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 6a1e5a2d6..cf67c5fff 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -25,7 +25,7 @@ @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%9 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -112,18 +112,30 @@

Types Conforming to Convertible​ToJSValue

+
+

Default Implementations

+
+

+ js​Value() +

+
+
@available(*, deprecated, message: "Use the .jsValue property instead")
+    public func jsValue() -> JSValue  
+
+
+

Requirements

-
+

- js​Value() + js​Value

-
func jsValue() -> JSValue
+
var jsValue: JSValue  

Create a JSValue that represents this object

@@ -136,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index cb09af54b..edd98cfc6 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -25,7 +25,7 @@ @@ -35,26 +35,30 @@

Extensions on Dictionary

-
-

Methods

+
+

Properties

-
+

- js​Value() + js​Value

-
public func jsValue() -> JSValue  
+
public var jsValue: JSValue  
-
+

- js​Value() + js​Value

-
public func jsValue() -> JSValue  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

construct(from:​)

@@ -68,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 65ccc3c98..afcb2f6ba 100644 --- a/Double/index.html +++ b/Double/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on Double

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Double?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Double?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index d0b2be910..f414375d9 100644 --- a/Float/index.html +++ b/Float/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on Float

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Float?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Float?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index c72b7ecff..23e3b00de 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 37eae4656..649fcadb9 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8170035e4..fae5aabdd 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -58,14 +66,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index f89a63ea7..ff85bdfc2 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 1b61f4b27..4c4c2528d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 20205c78e..7fabfa6f0 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on Int64

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Self?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 1486ca946..d977960d3 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f132e1485..20355f97a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%31 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index ec7eaad76..dc605a78d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 970bf1902..6ec6e930a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%37 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 94b87fea5..ed38bc7ef 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -25,7 +25,7 @@ @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%93 @@ -67,92 +67,92 @@ - + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass - - +JSTypedArray->JSBridgedClass + + - - -JSDate - - -JSDate + + +JSError + + +JSError - - -JSDate->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass - - + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -206,12 +206,12 @@

Types Conforming to JSBridged​Class

Default Implementations

-
+

- value + js​Value

-
public var value: JSValue  
+
public var jsValue: JSValue  
@@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 86bead2b8..bb37cb2ea 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%49 @@ -74,37 +74,37 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -135,14 +135,6 @@

public static func construct(from value: JSValue) -> Self?  

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
-

description @@ -157,19 +149,7 @@

Requirements

-
-

- value -

-
-
var value: JSValue  
-
-
-

This is the value your class wraps.

- -
-
-
+

init?(from:​)

@@ -187,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 3fb50c9f1..cf28e4336 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%21 @@ -80,33 +80,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 95457289b..c256c3a7c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%41 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index c92a83a99..c90859011 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%3 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index a9cc695b3..b8163e291 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -25,7 +25,7 @@ @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%85 @@ -68,30 +68,30 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error @@ -209,31 +209,27 @@

-
+

- description + js​Value

-
public var description: String  
+
public var jsValue: JSValue  
-

The textual representation of this error.

+

Creates a new JSValue from this JSError instance.

-
-
-

Methods

- -
+

- js​Value() + description

-
public func jsValue() -> JSValue  
+
public var description: String  
-

Creates a new JSValue from this JSError instance.

+

The textual representation of this error.

@@ -246,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index bd99221aa..2d1ae3f5f 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -25,7 +25,7 @@ @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%155 @@ -131,6 +131,14 @@

try validateAge.throws(20)

+

+
+

+ js​Value +

+
+
override public var jsValue: JSValue  
+
@@ -268,14 +276,6 @@

override public class func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
override public func jsValue() -> JSValue  
-
@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 725eccad1..d1dc26296 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cc609e924..8810fb4df 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -25,7 +25,7 @@ @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%107 @@ -81,41 +81,41 @@ - + -Hashable +Equatable -Hashable +Equatable - + -JSObject->Hashable +JSObject->Equatable - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - + -JSObject->Equatable +JSObject->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +Hashable + +Hashable - - -JSObject->CustomStringConvertible - - + + +JSObject->Hashable + + @@ -127,53 +127,53 @@ - + JSFunction->JSObject - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject - - -JSClosure - - -JSClosure + + +JSSymbol + + +JSSymbol - - -JSClosure->JSObject - - + + +JSSymbol->JSObject + + - + -JSSymbol - +JSOneshotClosure + -JSSymbol +JSOneshotClosure - + -JSSymbol->JSObject +JSOneshotClosure->JSObject @@ -246,6 +246,14 @@

A JSObject of the global scope object. This allows access to the global properties and global names by accessing the JSObject returned.

+

+
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
@@ -302,14 +310,6 @@

public class func construct(from value: JSValue) -> Self?  

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
-

hash(into:​) @@ -392,7 +392,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 6de740a70..e52d47fb9 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 970e23505..2d2f5ce8a 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%129 @@ -66,33 +66,33 @@ - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 7d6998dfe..69edb420c 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%27 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index a2f7e9a78..857e3a275 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -25,7 +25,7 @@ @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%67 @@ -78,45 +78,45 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible @@ -127,20 +127,20 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - + -JSString->LosslessStringConvertible +JSString->Equatable @@ -190,7 +190,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

description

@@ -214,14 +222,6 @@

public static func construct(from value: JSValue) -> JSString?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 77d5e7149..c60257c20 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%151 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index f86a741d9..3062d69d2 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 71ccf7e7f..75ca16caa 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 399ee9924..5ce6d05a2 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ea39e6f4c..4430426f9 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%123 @@ -211,7 +211,7 @@

constructor

-
public static var constructor: JSFunction  
+
public class var constructor: JSFunction  

@@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html new file mode 100644 index 000000000..49526c095 --- /dev/null +++ b/JSUInt8ClampedArray/index.html @@ -0,0 +1,112 @@ + + + + + + JavaScriptKit - JSUInt8ClampedArray + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + JSUInt8Clamped​Array +

+ +
+
public class JSUInt8ClampedArray: JSTypedArray<UInt8>  
+
+
+ +
+ + + + + + +%57 + + + +JSUInt8ClampedArray + + +JSUInt8ClampedArray + + + + + +JSTypedArray<UInt8> + +JSTypedArray<UInt8> + + + +JSUInt8ClampedArray->JSTypedArray<UInt8> + + + + + + + + +
+

Conforms To

+
+
JSTypedArray<UInt8>
+
+
+
+

Properties

+ +
+

+ constructor +

+
+
public class override var constructor: JSFunction  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSValue/index.html b/JSValue/index.html index 214934bcc..9cfa5cfda 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%135 @@ -67,39 +67,39 @@ - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - + -JSValue->Equatable +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByIntegerLiteral @@ -110,20 +110,20 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -139,15 +139,15 @@ - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable @@ -283,6 +283,14 @@

public var array: JSArray?  

+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+

boolean @@ -421,14 +429,6 @@

public static func construct(from value: JSValue) -> Self?  

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
-

from​JSValue() @@ -532,7 +532,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a6af1c434..41a9f2fa8 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 99fd78cf8..4faa5fc36 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f6c60106d..f004932ad 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 1a75e65c9..5af0ec3da 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index ed7b62c6d..05c577c62 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index b07ed03af..c108aecdb 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -37,7 +37,7 @@

-
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
+
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  
@@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%15 @@ -63,27 +63,27 @@ - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7094f6a6c..7123dc80f 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on Optional

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Self?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index b3f33cd9c..3208b92c5 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -25,7 +25,7 @@ @@ -35,15 +35,15 @@

Extensions on RawJSValue

-
-

Methods

+
+

Properties

-
+

- js​Value() + js​Value

-
public func jsValue() -> JSValue  
+
public var jsValue: JSValue  
@@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 53c6d783c..cd7688807 100644 --- a/String/index.html +++ b/String/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on String

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> String?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> String?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4568e1804..c906ff796 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%61 @@ -66,33 +66,33 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 0ae1915c4..fa69b0b26 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -58,14 +66,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index e90f72878..46d6dc351 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 853db3eb1..371e7e9b3 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 255076a20..e37f669d3 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -25,7 +25,7 @@ @@ -35,23 +35,27 @@

Extensions on UInt64

-
-

Methods

+
+

Properties

-
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Self?  
+
public var jsValue: JSValue  
-
+
+
+

Methods

+ +

- js​Value() + construct(from:​)

-
public func jsValue() -> JSValue  
+
public static func construct(from value: JSValue) -> Self?  
@@ -60,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index f852b9359..720548889 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,7 +38,15 @@

Properties

-
+
+

+ js​Value +

+
+
public var jsValue: JSValue  
+
+
+

typed​Array​Class

@@ -57,14 +65,6 @@

public static func construct(from value: JSValue) -> Self?  
-

-
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
@@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1c91e86c5..be6e23032 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index d0b98e477..be5c2c85e 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 3a27801ea..e886c35f5 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index a9caf736c..2a14e2013 100644 --- a/index.html +++ b/index.html @@ -128,6 +128,14 @@

Classes

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. FIXME: BigInt-based TypedArrays are currently not supported.

+ +
+ + JSUInt8Clamped​Array + +
+
+
@@ -502,7 +510,7 @@

Extensions

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index a11547674..83696e14d 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 704ba1dd2..4e3711df5 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index fce49725f..0e7fa3c32 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 17427bf2e1bf8c6de4e1c9284d010cf86e7399e5 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 7 Apr 2022 03:56:49 +0000 Subject: [PATCH 100/148] deploy: 54d4a47e83d9b9c647eeb14ffa597797ff855558 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 38 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 104 ++++---- JSBridgedType/index.html | 32 +-- JSClosure/index.html | 38 +-- JSClosureProtocol/index.html | 44 ++-- JSDate/index.html | 10 +- JSError/index.html | 52 ++-- JSFunction/index.html | 8 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 123 ++++------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +-- JSPromise/index.html | 6 +- JSString/index.html | 40 +-- JSSymbol/index.html | 282 ---------------------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 110 ++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 51 ---- index.html | 26 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 51 ---- 59 files changed, 397 insertions(+), 838 deletions(-) delete mode 100644 JSSymbol/index.html delete mode 100644 getJSValue(this_symbol_)/index.html delete mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/Array/index.html b/Array/index.html index ee3255790..2c6ec850c 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 800c8f409..a9d6e5eaa 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 42819864d..4d88ef2f6 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%31 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index cf67c5fff..620bf47ee 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%85 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index edd98cfc6..e3996fc8e 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index afcb2f6ba..9ae8216e4 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index f414375d9..248303672 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 23e3b00de..07f4d4abb 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 649fcadb9..ceaef68e1 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index fae5aabdd..fe8f5e2d0 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ff85bdfc2..ef0242eeb 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 4c4c2528d..2fa19cd0a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 7fabfa6f0..371592a53 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index d977960d3..6a42c93ee 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 20355f97a..8bc1138ed 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%91 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index dc605a78d..d0ed97d08 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 6ec6e930a..49c1f4266 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%7 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ed38bc7ef..ee485bd9f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%65 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index bb37cb2ea..193c5797b 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%135 @@ -68,16 +68,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + @@ -86,25 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index cf28e4336..071e472a4 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%53 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c256c3a7c..e0d7cd9f0 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%97 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index c90859011..86404514a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%59 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index b8163e291..90a40b439 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%11 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - - -JSError->JSBridgedClass + + +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 2d1ae3f5f..369a484d9 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%3 @@ -274,7 +274,7 @@

construct(from:​)

-
override public class func construct(from value: JSValue) -> Self?  
+
public override class func construct(from value: JSValue) -> Self?  

@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index d1dc26296..da6b3367b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 8810fb4df..2cc7dea90 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,116 +66,101 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%107 - + + + +%121 + JSObject - -JSObject + +JSObject Equatable - -Equatable + +Equatable JSObject->Equatable - - + + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - - - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + + + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + @@ -196,8 +181,6 @@

Subclasses

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

-
JSSymbol
-

Conforms To

@@ -392,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e52d47fb9..0f8f8459f 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 2d2f5ce8a..f1bda683b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%25 @@ -66,33 +66,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 69edb420c..4ae42901f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%117 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 857e3a275..9e4100c6a 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%105 @@ -93,18 +93,15 @@
- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -132,15 +129,18 @@ - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html deleted file mode 100644 index c60257c20..000000000 --- a/JSSymbol/index.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - JavaScriptKit - JSSymbol - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSSymbol -

- -
-
public class JSSymbol: JSObject  
-
-
- -
- - - - - - -%151 - - - -JSSymbol - - -JSSymbol - - - - - -JSObject - - -JSObject - - - - - -JSSymbol->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ description: JSString)  
-
-
-
-

- init(_:​) -

-
-
@_disfavoredOverload
-    public convenience init(_ description: String)  
-
-
-
-
-

Properties

- -
-

- name -

-
-
public var name: String?  
-
-
-
-

- async​Iterator -

-
-
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
-
-
-
-

- has​Instance -

-
-
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
-
-
-
-

- is​Concat​Spreadable -

-
-
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
-
-
-
-

- iterator -

-
-
public static let iterator: JSSymbol! = Symbol.iterator.symbol
-
-
-
-

- match -

-
-
public static let match: JSSymbol! = Symbol.match.symbol
-
-
-
-

- match​All -

-
-
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
-
-
-
-

- replace -

-
-
public static let replace: JSSymbol! = Symbol.replace.symbol
-
-
-
-

- search -

-
-
public static let search: JSSymbol! = Symbol.search.symbol
-
-
-
-

- species -

-
-
public static let species: JSSymbol! = Symbol.species.symbol
-
-
-
-

- split -

-
-
public static let split: JSSymbol! = Symbol.split.symbol
-
-
-
-

- to​Primitive -

-
-
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
-
-
-
-

- to​String​Tag -

-
-
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
-
-
-
-

- unscopables -

-
-
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
-
-
-
-
-

Methods

- -
-

- `for`(key:​) -

-
-
public static func `for`(key: JSString) -> JSSymbol  
-
-
-
-

- `for`(key:​) -

-
-
@_disfavoredOverload
-    public static func `for`(key: String) -> JSSymbol  
-
-
-
-

- key(for:​) -

-
-
public static func key(for symbol: JSSymbol) -> JSString?  
-
-
-
-

- key(for:​) -

-
-
@_disfavoredOverload
-    public static func key(for symbol: JSSymbol) -> String?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 3062d69d2..cf665ed46 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 75ca16caa..de31e9c2f 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 5ce6d05a2..af4560f89 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 4430426f9..0fdc3e427 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%143 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 49526c095..6410db27e 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%149 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 9cfa5cfda..88671a3ec 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%37 @@ -67,15 +67,15 @@
- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible @@ -86,68 +86,68 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral @@ -200,7 +200,7 @@

init(nil​Literal:​)

-
public init(nilLiteral _: ())  
+
public init(nilLiteral: ())  
@@ -262,14 +262,6 @@

case function(JSFunction) 
-

-
-

- symbol -

-
-
case symbol(JSSymbol) 
-
@@ -373,14 +365,6 @@

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

-

-
-
-

- symbol -

-
-
public var symbol: JSSymbol?  
@@ -434,7 +418,7 @@

from​JSValue()

-
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
+
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
@@ -442,7 +426,7 @@

string(_:​)

-
static func string(_ value: String) -> JSValue  
+
public static func string(_ value: String) -> JSValue  
@@ -451,7 +435,7 @@

@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
+ public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -485,7 +469,7 @@

@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    static func function(_ closure: JSClosure) -> JSValue  
+ public static func function(_ closure: JSClosure) -> JSValue
@@ -493,7 +477,7 @@

is​Instance​Of(_:​)

-
func isInstanceOf(_ constructor: JSFunction) -> Bool  
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -532,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 41a9f2fa8..9078b3684 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 4faa5fc36..ced0ba2e5 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index f004932ad..d6fd23bd9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 5af0ec3da..e0bc7f181 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 05c577c62..d2693ac3f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index c108aecdb..8c528baa2 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%19 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7123dc80f..e78f41130 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 3208b92c5..64e5dd3a1 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index cd7688807..00a882d15 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index c906ff796..4c8e152da 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%79 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index fa69b0b26..e92a5f634 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 46d6dc351..29145e942 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 371e7e9b3..c9a342cd0 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index e37f669d3..7802dfb17 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 720548889..7acc41a72 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index be6e23032..df71def25 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index be5c2c85e..1efcd34a1 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html deleted file mode 100644 index e886c35f5..000000000 --- a/getJSValue(this_symbol_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - getJSValue(this:symbol:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -get​JSValue(this:​symbol:​) -

- -
-
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/index.html b/index.html index 2a14e2013..e37c31b19 100644 --- a/index.html +++ b/index.html @@ -186,14 +186,6 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
- - JSSymbol - -
-
-
@@ -401,22 +393,6 @@

Functions

-
-
- - get​JSValue(this:​symbol:​) - -
-
- -
-
- - set​JSValue(this:​symbol:​value:​) - -
-
-
@@ -510,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 83696e14d..c0df95c18 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 4e3711df5..a628a48e1 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html deleted file mode 100644 index 0e7fa3c32..000000000 --- a/setJSValue(this_symbol_value_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - setJSValue(this:symbol:value:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -set​JSValue(this:​symbol:​value:​) -

- -
-
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - From e1263968175ccba065f2dc59297af4ef89a9485f Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 8 Apr 2022 08:42:37 +0000 Subject: [PATCH 101/148] deploy: 9a3b7d5f316e6d1709bd25e3e0392efca357f525 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 34 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 108 +++++++++++------------ JSBridgedType/index.html | 46 +++++----- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 44 ++++----- JSDate/index.html | 38 ++++---- JSError/index.html | 10 +-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 108 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +-- JSPromise/index.html | 6 +- JSString/index.html | 66 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 76 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 56 files changed, 372 insertions(+), 372 deletions(-) diff --git a/Array/index.html b/Array/index.html index 2c6ec850c..256a40815 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index a9d6e5eaa..9a19a7719 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 4d88ef2f6..efa8f6ec1 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%67 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 620bf47ee..da3225edc 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%47 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index e3996fc8e..ccf016fa5 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 9ae8216e4..6bf5788cf 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 248303672..301fa225a 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 07f4d4abb..40e6e9ead 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ceaef68e1..a6263fbfd 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index fe8f5e2d0..6a4a47d35 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ef0242eeb..1b082a7cf 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 2fa19cd0a..8c1f60159 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 371592a53..db72f92f5 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 6a42c93ee..6fe56d989 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 8bc1138ed..a5d7271a3 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%113 @@ -74,7 +74,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index d0ed97d08..a25cc0188 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 49c1f4266..e35216d6c 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%133 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ee485bd9f..ad2770e99 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%9 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSBridgedClass + + - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 193c5797b..b321b083a 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%79 @@ -67,6 +67,18 @@
+ + +JSValueCompatible + +JSValueCompatible + + + +JSBridgedType->JSValueCompatible + + + CustomStringConvertible @@ -74,37 +86,25 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - -JSValueCompatible - -JSValueCompatible - - - -JSBridgedType->JSValueCompatible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 071e472a4..6dc0f550a 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%73 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index e0d7cd9f0..8ef9e4292 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%59 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 86404514a..b381ae086 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%41 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 90a40b439..df70a45bc 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%125 @@ -87,7 +87,7 @@ CustomStringConvertible
- + JSError->CustomStringConvertible @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 369a484d9..34bddcfae 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%109 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index da6b3367b..7d618401b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 2cc7dea90..22117af01 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%23 @@ -81,30 +81,6 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Hashable @@ -112,55 +88,79 @@ Hashable - + JSObject->Hashable - - -JSClosure - - -JSClosure - + + +CustomStringConvertible + +CustomStringConvertible + + +JSObject->CustomStringConvertible + + - - -JSClosure->JSObject - - + + +Equatable + +Equatable + + + +JSObject->Equatable + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 0f8f8459f..939164c01 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index f1bda683b..55e9c3f03 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%103 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4ae42901f..11f62f85a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%99 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 9e4100c6a..53132a483 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%87 @@ -78,54 +78,54 @@
- - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue @@ -139,7 +139,7 @@ - + JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index cf665ed46..3c2e0fcd0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index de31e9c2f..53881e40d 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index af4560f89..222441a9f 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0fdc3e427..6f44cb654 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%3 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 6410db27e..7d4c3f41f 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%37 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 88671a3ec..acb501b0b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%137 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible @@ -98,56 +98,56 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 9078b3684..492903478 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ced0ba2e5..d317fb6ea 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d6fd23bd9..d207eacdd 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index e0bc7f181..fc61008a1 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d2693ac3f..8eb39deeb 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 8c528baa2..0820dc619 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%119 @@ -70,7 +70,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -82,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index e78f41130..a8c592041 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 64e5dd3a1..21fbe1263 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 00a882d15..42eab4a91 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 4c8e152da..771d5fe48 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%53 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index e92a5f634..61f9e0689 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 29145e942..21889082e 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index c9a342cd0..d3d623155 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 7802dfb17..db01b137d 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 7acc41a72..c3128c95d 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index df71def25..7cef7602e 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 1efcd34a1..37daa2bd5 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index e37c31b19..210879686 100644 --- a/index.html +++ b/index.html @@ -486,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index c0df95c18..4c354f265 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index a628a48e1..5629d00ec 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 1aac808c7b85cb2e2875737f88364d00917939e6 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 8 Apr 2022 08:57:33 +0000 Subject: [PATCH 102/148] deploy: ed79d5928bd16376e6bfd47f6e391624901f9912 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++----- ConvertibleToJSValue/index.html | 38 ++++----- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 102 +++++++++++------------ JSBridgedType/index.html | 30 +++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 ++++---- JSDate/index.html | 10 +-- JSError/index.html | 50 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 86 +++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++----- JSPromise/index.html | 6 +- JSString/index.html | 56 ++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 76 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 56 files changed, 368 insertions(+), 368 deletions(-) diff --git a/Array/index.html b/Array/index.html index 256a40815..3e116cc4a 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 9a19a7719..ea7b0ee27 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index efa8f6ec1..4c8c21d32 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%83 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index da3225edc..d7e50cee3 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%117 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index ccf016fa5..177443e87 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 6bf5788cf..dbc5e9e74 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 301fa225a..6f5575a94 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 40e6e9ead..f78f4a5d8 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index a6263fbfd..898b94c6f 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 6a4a47d35..7d59f6a20 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 1b082a7cf..4219196aa 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 8c1f60159..aae3c259d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index db72f92f5..233de42ba 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 6fe56d989..2235fbe86 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index a5d7271a3..d9c932f8c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%71 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index a25cc0188..c21417634 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e35216d6c..67f9c8e21 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%123 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ad2770e99..3dd6fbe5f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%19 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - - -JSPromise - - -JSPromise + + +JSError + + +JSError - + -JSPromise->JSBridgedClass - - +JSError->JSBridgedClass + + - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray JSArray->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass + + + + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b321b083a..a36641225 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%3 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6dc0f550a..9b1104367 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%99 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 8ef9e4292..d2a211cdd 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%33 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index b381ae086..ad8afea32 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%111 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index df70a45bc..e14e190cc 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%11 @@ -68,42 +68,42 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 34bddcfae..16519be83 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%67 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7d618401b..b1d1a9ed2 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 22117af01..6e72edb46 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%53 @@ -81,17 +81,17 @@
- - -Hashable - -Hashable + + +Equatable + +Equatable - - -JSObject->Hashable - - + + +JSObject->Equatable + + @@ -105,62 +105,62 @@ - + -Equatable +Hashable -Equatable +Hashable - + -JSObject->Equatable +JSObject->Hashable - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject - + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 939164c01..62147af41 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 55e9c3f03..4a2af0a09 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%93 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 11f62f85a..d84418b4a 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%89 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 53132a483..ef2e2ca63 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%41 @@ -78,15 +78,18 @@
- - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue @@ -97,7 +100,7 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible @@ -109,38 +112,35 @@ Equatable - + JSString->Equatable - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - + -JSString->ConstructibleFromJSValue +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 3c2e0fcd0..b1408741f 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 53881e40d..4670873fb 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 222441a9f..d162b051a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6f44cb654..f2885a356 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%77 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 7d4c3f41f..6039cbfed 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%127 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index acb501b0b..0f41dc895 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -67,39 +67,39 @@

- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -110,44 +110,44 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 492903478..bc465f73b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index d317fb6ea..41c559e85 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index d207eacdd..6f6e114d5 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index fc61008a1..9e6000f88 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 8eb39deeb..fb519c5dc 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 0820dc619..1ccbb74bb 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%105 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index a8c592041..e7661b4f0 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 21fbe1263..22dc1fbf6 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 42eab4a91..87202e50f 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 771d5fe48..1679d96e1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%131 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 61f9e0689..ab1a58424 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 21889082e..fbad75655 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index d3d623155..009b75e46 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index db01b137d..62a0710c1 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index c3128c95d..0884c8658 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 7cef7602e..9dde1d0cf 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 37daa2bd5..295616025 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 210879686..be319897b 100644 --- a/index.html +++ b/index.html @@ -486,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 4c354f265..ea253f426 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 5629d00ec..971c82c53 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From d07911ef0e109ff1e899c14f198c007a368dcc5a Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Fri, 8 Apr 2022 12:10:40 +0000 Subject: [PATCH 103/148] deploy: ca19e88e5e0a70e5a2755e372477236c7c501341 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++---- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 110 +++++++++++------------ JSBridgedType/index.html | 10 +-- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 52 +++++------ JSDate/index.html | 6 +- JSError/index.html | 42 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 90 +++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 68 +++++++------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 56 files changed, 375 insertions(+), 375 deletions(-) diff --git a/Array/index.html b/Array/index.html index 3e116cc4a..b70519000 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index ea7b0ee27..0e3c607af 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 4c8c21d32..e82261788 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%107 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index d7e50cee3..e932d1321 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%23 @@ -76,7 +76,7 @@
- + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 177443e87..46d1e8ffd 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index dbc5e9e74..cb9919ff9 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 6f5575a94..8d61c6de7 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index f78f4a5d8..3d5f9c112 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 898b94c6f..d0c49734c 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 7d59f6a20..d395ead5d 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 4219196aa..e99413fb1 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index aae3c259d..cf4202e65 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 233de42ba..8c4dd3c32 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 2235fbe86..03310a2c1 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index d9c932f8c..a179fe36d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%101 @@ -67,30 +67,30 @@
- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index c21417634..08c12fc57 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 67f9c8e21..8673fb1b0 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%19 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 3dd6fbe5f..d1da9bbea 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%55 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSArray - - -JSArray + + +JSDate + + +JSDate - - -JSArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - - -JSTypedArray - - -JSTypedArray + + +JSError + + +JSError - - -JSTypedArray->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a36641225..b24483bf2 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%113 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -86,7 +86,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 9b1104367..f81a90d2b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%135 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index d2a211cdd..a190a9f72 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%141 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index ad8afea32..ae37577f1 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%49 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index e14e190cc..fa5842f20 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%121 @@ -68,18 +68,15 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -90,20 +87,23 @@ Error - + JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 16519be83..532140111 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%149 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index b1d1a9ed2..fabb11c8f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 6e72edb46..7a3efdc67 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%29 @@ -81,6 +81,18 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + Equatable @@ -88,49 +100,22 @@ Equatable - + JSObject->Equatable - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - + + @@ -142,26 +127,41 @@ - + JSClosure->JSObject - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 62147af41..94e8b3388 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4a2af0a09..64a51f25c 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%43 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d84418b4a..4245e72ae 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%15 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index ef2e2ca63..1fb49f6da 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%89 @@ -78,69 +78,69 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index b1408741f..09f4581c2 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 4670873fb..209d41f1d 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d162b051a..5cc0dc337 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f2885a356..954db88b4 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%129 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 6039cbfed..9104e8e0d 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%69 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 0f41dc895..18ad4ff5a 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%73 @@ -67,75 +67,75 @@
- + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index bc465f73b..1f8ad7422 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 41c559e85..45e4ad9ee 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6f6e114d5..5b848b92e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 9e6000f88..8c2fd5657 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index fb519c5dc..1b785d6d8 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 1ccbb74bb..779f4da3d 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%9 @@ -63,27 +63,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index e7661b4f0..d1e4c46ef 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 22dc1fbf6..a81207faa 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 87202e50f..d097d676f 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1679d96e1..0a7c97579 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%3 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index ab1a58424..9bf30c5c6 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index fbad75655..21670801b 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 009b75e46..8f7accef8 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 62a0710c1..808ba00be 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 0884c8658..eef4f943b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 9dde1d0cf..e3c1e701e 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 295616025..b6d0d09ed 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index be319897b..05566879e 100644 --- a/index.html +++ b/index.html @@ -486,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index ea253f426..b1149db83 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 971c82c53..c462756ba 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 4210211f56ca49599ffda63af2f2c6b679392f44 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 8 Apr 2022 20:46:59 +0000 Subject: [PATCH 104/148] deploy: 6b07c4f187b899518a2b4f8ed90d022b67400e15 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 98 ++++---- JSBridgedType/index.html | 46 ++-- JSClosure/index.html | 38 +-- JSClosureProtocol/index.html | 52 ++-- JSDate/index.html | 36 +-- JSError/index.html | 50 ++-- JSFunction/index.html | 8 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 131 +++++----- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 84 +++---- JSSymbol/index.html | 282 ++++++++++++++++++++++ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 100 ++++---- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 51 ++++ index.html | 26 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 51 ++++ 59 files changed, 859 insertions(+), 418 deletions(-) create mode 100644 JSSymbol/index.html create mode 100644 getJSValue(this_symbol_)/index.html create mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/Array/index.html b/Array/index.html index b70519000..4c006cdf2 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 0e3c607af..1417d3dfe 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index e82261788..2ebb57e95 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%71 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index e932d1321..90132984a 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%41 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 46d1e8ffd..f09d0ec34 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index cb9919ff9..cf7112b1c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 8d61c6de7..e7125cdc9 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 3d5f9c112..db1bf243b 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index d0c49734c..0fdfb6b41 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index d395ead5d..0935ecbe0 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index e99413fb1..c80f0fb68 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index cf4202e65..987d8a419 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 8c4dd3c32..d2fc3d8c2 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 03310a2c1..c3cb3bccb 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index a179fe36d..52401ef69 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%83 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 08c12fc57..f67e22cf7 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 8673fb1b0..132673c23 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%67 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d1da9bbea..4f20b8080 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%89 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSPromise - - -JSPromise + + +JSArray + + +JSArray - + -JSPromise->JSBridgedClass - - +JSArray->JSBridgedClass + + - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - + -JSError->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b24483bf2..a632f66d3 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%21 @@ -67,18 +67,6 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - JSValueCompatible @@ -86,25 +74,37 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f81a90d2b..6c628ab90 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%77 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index a190a9f72..d8ce74ef2 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%103 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSClosureProtocol - - + + +JSOneshotClosure->JSClosureProtocol + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index ae37577f1..d3b76d435 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%9 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index fa5842f20..ef069e878 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%115 @@ -68,42 +68,42 @@
- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 532140111..cdbb70f86 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%123 @@ -274,7 +274,7 @@

construct(from:​)

-
public override class func construct(from value: JSValue) -> Self?  
+
override public class func construct(from value: JSValue) -> Self?  

@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index fabb11c8f..7de729aa6 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 7a3efdc67..ad8736358 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,101 +66,116 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%29 - + + + +%47 + JSObject - -JSObject + +JSObject - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - - -JSClosure - - -JSClosure + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSSymbol + + +JSSymbol - + + +JSSymbol->JSObject + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + -JSClosure->JSObject - - +JSOneshotClosure->JSObject + + JSFunction - -JSFunction + +JSFunction - + JSFunction->JSObject - - + + - + -JSOneshotClosure - - -JSOneshotClosure +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + @@ -181,6 +196,8 @@

Subclasses

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

+
JSSymbol
+

Conforms To

@@ -375,7 +392,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 94e8b3388..02ee51582 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 64a51f25c..7c2177076 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%153 @@ -76,7 +76,7 @@ - + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4245e72ae..ed6cdab97 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%127 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 1fb49f6da..bd5489ecd 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%29 @@ -78,69 +78,69 @@
- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - +ExpressibleByStringLiteral - - + -JSString->ConvertibleToJSValue +JSString->ExpressibleByStringLiteral - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html new file mode 100644 index 000000000..518993acc --- /dev/null +++ b/JSSymbol/index.html @@ -0,0 +1,282 @@ + + + + + + JavaScriptKit - JSSymbol + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + JSSymbol +

+ +
+
public class JSSymbol: JSObject  
+
+
+ +
+ + + + + + +%111 + + + +JSSymbol + + +JSSymbol + + + + + +JSObject + + +JSObject + + + + + +JSSymbol->JSObject + + + + + + + + +
+

Superclass

+
+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
+
public init(_ description: JSString)  
+
+
+
+

+ init(_:​) +

+
+
@_disfavoredOverload
+    public convenience init(_ description: String)  
+
+
+
+
+

Properties

+ +
+

+ name +

+
+
public var name: String?  
+
+
+
+

+ async​Iterator +

+
+
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
+
+
+
+

+ has​Instance +

+
+
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
+
+
+
+

+ is​Concat​Spreadable +

+
+
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
+
+
+
+

+ iterator +

+
+
public static let iterator: JSSymbol! = Symbol.iterator.symbol
+
+
+
+

+ match +

+
+
public static let match: JSSymbol! = Symbol.match.symbol
+
+
+
+

+ match​All +

+
+
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
+
+
+
+

+ replace +

+
+
public static let replace: JSSymbol! = Symbol.replace.symbol
+
+
+
+

+ search +

+
+
public static let search: JSSymbol! = Symbol.search.symbol
+
+
+
+

+ species +

+
+
public static let species: JSSymbol! = Symbol.species.symbol
+
+
+
+

+ split +

+
+
public static let split: JSSymbol! = Symbol.split.symbol
+
+
+
+

+ to​Primitive +

+
+
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
+
+
+
+

+ to​String​Tag +

+
+
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
+
+
+
+

+ unscopables +

+
+
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
+
+
+
+
+

Methods

+ +
+

+ `for`(key:​) +

+
+
public static func `for`(key: JSString) -> JSSymbol  
+
+
+
+

+ `for`(key:​) +

+
+
@_disfavoredOverload
+    public static func `for`(key: String) -> JSSymbol  
+
+
+
+

+ key(for:​) +

+
+
public static func key(for symbol: JSSymbol) -> JSString?  
+
+
+
+

+ key(for:​) +

+
+
@_disfavoredOverload
+    public static func key(for symbol: JSSymbol) -> String?  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 09f4581c2..63a7c6f61 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 209d41f1d..0f9907e78 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 5cc0dc337..de56c3ce9 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 954db88b4..0f94a92ba 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%15 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 9104e8e0d..7c4d99c9c 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%63 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 18ad4ff5a..ec75d38c0 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%137 @@ -74,20 +74,20 @@ ExpressibleByFloatLiteral
- + JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral @@ -98,56 +98,56 @@ Equatable - + JSValue->Equatable - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible @@ -200,7 +200,7 @@

init(nil​Literal:​)

-
public init(nilLiteral: ())  
+
public init(nilLiteral _: ())  
@@ -262,6 +262,14 @@

case function(JSFunction) 
+

+
+

+ symbol +

+
+
case symbol(JSSymbol) 
+
@@ -365,6 +373,14 @@

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

+

+
+
+

+ symbol +

+
+
public var symbol: JSSymbol?  
@@ -418,7 +434,7 @@

from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
+
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
@@ -426,7 +442,7 @@

string(_:​)

-
public static func string(_ value: String) -> JSValue  
+
static func string(_ value: String) -> JSValue  
@@ -435,7 +451,7 @@

@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
+ static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -469,7 +485,7 @@

@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    public static func function(_ closure: JSClosure) -> JSValue  
+ static func function(_ closure: JSClosure) -> JSValue
@@ -477,7 +493,7 @@

is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool  
+
func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -516,7 +532,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 1f8ad7422..2872356fa 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 45e4ad9ee..73f3328bd 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 5b848b92e..8b54626de 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 8c2fd5657..ed123a87f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1b785d6d8..849d8e970 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 779f4da3d..301f399bc 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%131 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index d1e4c46ef..28ff8efb8 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index a81207faa..1bc2591aa 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index d097d676f..6c0294e66 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 0a7c97579..f0f0891a9 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -66,33 +66,33 @@

- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 9bf30c5c6..0ab7c8e44 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 21670801b..4b42cdd17 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 8f7accef8..2ca220bcd 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 808ba00be..00d16cebc 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index eef4f943b..4027265e5 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index e3c1e701e..1786bf9e4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index b6d0d09ed..4f7df4172 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html new file mode 100644 index 000000000..6eb1635d8 --- /dev/null +++ b/getJSValue(this_symbol_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - getJSValue(this:symbol:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +get​JSValue(this:​symbol:​) +

+ +
+
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/index.html b/index.html index 05566879e..0983cf508 100644 --- a/index.html +++ b/index.html @@ -186,6 +186,14 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ + JSSymbol + +
+
+
@@ -393,6 +401,22 @@

Functions

+
+
+ + get​JSValue(this:​symbol:​) + +
+
+ +
+
+ + set​JSValue(this:​symbol:​value:​) + +
+
+
@@ -486,7 +510,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index b1149db83..810725045 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index c462756ba..99977e40a 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html new file mode 100644 index 000000000..d6a8c240c --- /dev/null +++ b/setJSValue(this_symbol_value_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - setJSValue(this:symbol:value:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +set​JSValue(this:​symbol:​value:​) +

+ +
+
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + From 243bc53ecd8d59ee7cb5b4f8d22a7ad4c905883b Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 8 Apr 2022 20:47:02 +0000 Subject: [PATCH 105/148] deploy: 85e1a11a2684362fa7e3dde0be7729cffc19e2a4 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 38 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 106 ++++---- JSBridgedType/index.html | 12 +- JSClosure/index.html | 38 +-- JSClosureProtocol/index.html | 44 ++-- JSDate/index.html | 6 +- JSError/index.html | 38 +-- JSFunction/index.html | 8 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 137 +++++------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 32 +-- JSSymbol/index.html | 282 ---------------------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 96 +++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 51 ---- index.html | 26 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 51 ---- 59 files changed, 358 insertions(+), 799 deletions(-) delete mode 100644 JSSymbol/index.html delete mode 100644 getJSValue(this_symbol_)/index.html delete mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/Array/index.html b/Array/index.html index 4c006cdf2..f5329938c 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 1417d3dfe..88f261c08 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 2ebb57e95..7f5f829ac 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%33 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 90132984a..ccec0dc50 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%105 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index f09d0ec34..a51fbe747 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index cf7112b1c..62565437a 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index e7125cdc9..a39c254af 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index db1bf243b..7d0308b9a 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 0fdfb6b41..d6a7f995d 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 0935ecbe0..a50701ee1 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index c80f0fb68..f12f45a4b 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 987d8a419..a7eb814fd 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index d2fc3d8c2..6796057e4 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index c3cb3bccb..042760f08 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 52401ef69..f196bf170 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%111 @@ -67,30 +67,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f67e22cf7..5f050d667 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 132673c23..9bb8cbb08 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%131 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4f20b8080..36efa7c28 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%53 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + -JSArray - - -JSArray +JSDate + + +JSDate - + -JSArray->JSBridgedClass +JSDate->JSBridgedClass - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a632f66d3..6bed5cf98 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%123 @@ -74,7 +74,7 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -86,7 +86,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6c628ab90..c4fe39d49 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%117 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index d8ce74ef2..f298cd469 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%135 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index d3b76d435..e4773cdbf 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%85 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index ef069e878..98dd9f2ad 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%39 @@ -68,30 +68,30 @@
- - -Error - -Error - - - -JSError->Error - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass + + + + + +Error + +Error + + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index cdbb70f86..22d0077ac 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%3 @@ -274,7 +274,7 @@

construct(from:​)

-
override public class func construct(from value: JSValue) -> Self?  
+
public override class func construct(from value: JSValue) -> Self?  

@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7de729aa6..6aff886e2 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index ad8736358..16a45788b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,116 +66,101 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%47 - + + + +%91 + JSObject - -JSObject + +JSObject - - -Equatable - -Equatable + + +CustomStringConvertible + +CustomStringConvertible - - -JSObject->Equatable - - + + +JSObject->CustomStringConvertible + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - - -JSSymbol - - -JSSymbol + + +JSClosure + + +JSClosure - - -JSSymbol->JSObject - - + + +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - + + @@ -196,8 +181,6 @@

Subclasses

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

-
JSSymbol
-

Conforms To

@@ -392,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 02ee51582..e1a8525c1 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 7c2177076..0fe6c415b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%147 @@ -76,7 +76,7 @@ - + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index ed6cdab97..a89aecaeb 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%143 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index bd5489ecd..6e1639846 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%67 @@ -78,15 +78,15 @@
- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -112,20 +112,20 @@ - + JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - + -JSString->ExpressibleByStringLiteral +JSString->Equatable @@ -139,7 +139,7 @@ - + JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html deleted file mode 100644 index 518993acc..000000000 --- a/JSSymbol/index.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - JavaScriptKit - JSSymbol - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSSymbol -

- -
-
public class JSSymbol: JSObject  
-
-
- -
- - - - - - -%111 - - - -JSSymbol - - -JSSymbol - - - - - -JSObject - - -JSObject - - - - - -JSSymbol->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ description: JSString)  
-
-
-
-

- init(_:​) -

-
-
@_disfavoredOverload
-    public convenience init(_ description: String)  
-
-
-
-
-

Properties

- -
-

- name -

-
-
public var name: String?  
-
-
-
-

- async​Iterator -

-
-
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
-
-
-
-

- has​Instance -

-
-
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
-
-
-
-

- is​Concat​Spreadable -

-
-
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
-
-
-
-

- iterator -

-
-
public static let iterator: JSSymbol! = Symbol.iterator.symbol
-
-
-
-

- match -

-
-
public static let match: JSSymbol! = Symbol.match.symbol
-
-
-
-

- match​All -

-
-
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
-
-
-
-

- replace -

-
-
public static let replace: JSSymbol! = Symbol.replace.symbol
-
-
-
-

- search -

-
-
public static let search: JSSymbol! = Symbol.search.symbol
-
-
-
-

- species -

-
-
public static let species: JSSymbol! = Symbol.species.symbol
-
-
-
-

- split -

-
-
public static let split: JSSymbol! = Symbol.split.symbol
-
-
-
-

- to​Primitive -

-
-
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
-
-
-
-

- to​String​Tag -

-
-
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
-
-
-
-

- unscopables -

-
-
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
-
-
-
-
-

Methods

- -
-

- `for`(key:​) -

-
-
public static func `for`(key: JSString) -> JSSymbol  
-
-
-
-

- `for`(key:​) -

-
-
@_disfavoredOverload
-    public static func `for`(key: String) -> JSSymbol  
-
-
-
-

- key(for:​) -

-
-
public static func key(for symbol: JSSymbol) -> JSString?  
-
-
-
-

- key(for:​) -

-
-
@_disfavoredOverload
-    public static func key(for symbol: JSSymbol) -> String?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 63a7c6f61..e1e763b49 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 0f9907e78..9d2986c67 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index de56c3ce9..7e7b5565e 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0f94a92ba..58832f66e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%47 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 7c4d99c9c..0891a39fb 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%29 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ec75d38c0..20fd202db 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%13 @@ -67,63 +67,63 @@
- + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - + -JSValue->Equatable +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral @@ -134,7 +134,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -146,7 +146,7 @@ JSValueCompatible - + JSValue->JSValueCompatible @@ -200,7 +200,7 @@

init(nil​Literal:​)

-
public init(nilLiteral _: ())  
+
public init(nilLiteral: ())  
@@ -262,14 +262,6 @@

case function(JSFunction) 
-

-
-

- symbol -

-
-
case symbol(JSSymbol) 
-
@@ -373,14 +365,6 @@

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

-

-
-
-

- symbol -

-
-
public var symbol: JSSymbol?  
@@ -434,7 +418,7 @@

from​JSValue()

-
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
+
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
@@ -442,7 +426,7 @@

string(_:​)

-
static func string(_ value: String) -> JSValue  
+
public static func string(_ value: String) -> JSValue  
@@ -451,7 +435,7 @@

@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
+ public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -485,7 +469,7 @@

@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    static func function(_ closure: JSClosure) -> JSValue  
+ public static func function(_ closure: JSClosure) -> JSValue
@@ -493,7 +477,7 @@

is​Instance​Of(_:​)

-
func isInstanceOf(_ constructor: JSFunction) -> Bool  
+
public func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -532,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 2872356fa..920a6c1dd 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 73f3328bd..3b0aa40c5 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 8b54626de..6773d59f0 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ed123a87f..edf449a18 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 849d8e970..24c5bdac9 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 301f399bc..ed77350d0 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%79 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 28ff8efb8..021f86691 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 1bc2591aa..21a31c6e0 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6c0294e66..b71738b3f 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index f0f0891a9..7a23e2c31 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%7 @@ -66,33 +66,33 @@ - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 0ab7c8e44..72037e093 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 4b42cdd17..6260610d6 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 2ca220bcd..1ee06ae0d 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 00d16cebc..33ca99e46 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 4027265e5..8859799b8 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1786bf9e4..218e943ad 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 4f7df4172..69b0fee06 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html deleted file mode 100644 index 6eb1635d8..000000000 --- a/getJSValue(this_symbol_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - getJSValue(this:symbol:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -get​JSValue(this:​symbol:​) -

- -
-
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/index.html b/index.html index 0983cf508..8efb30087 100644 --- a/index.html +++ b/index.html @@ -186,14 +186,6 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
- - JSSymbol - -
-
-
@@ -401,22 +393,6 @@

Functions

-
-
- - get​JSValue(this:​symbol:​) - -
-
- -
-
- - set​JSValue(this:​symbol:​value:​) - -
-
-
@@ -510,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 810725045..0ef12ed33 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 99977e40a..ef89669c6 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html deleted file mode 100644 index d6a8c240c..000000000 --- a/setJSValue(this_symbol_value_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - setJSValue(this:symbol:value:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -set​JSValue(this:​symbol:​value:​) -

- -
-
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - From cad02fa086dce1b32a10f2a7006047b113cea5f2 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Sat, 9 Apr 2022 16:37:33 +0000 Subject: [PATCH 106/148] deploy: 7b0e0d27c156af4bafc5674c94719485b1599989 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 10 +-- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 76 ++++++++++---------- JSBridgedType/index.html | 6 +- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 50 +++++++------- JSDate/index.html | 10 +-- JSError/index.html | 42 +++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 88 ++++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 2 +- JSString/index.html | 76 ++++++++++---------- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++++----- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++++++----------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- 56 files changed, 332 insertions(+), 332 deletions(-) diff --git a/Array/index.html b/Array/index.html index f5329938c..8549b1922 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 88f261c08..02233e190 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7f5f829ac..94767e171 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%137 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ccec0dc50..15d1aa755 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%97 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index a51fbe747..b76b70108 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 62565437a..5c0547c9f 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index a39c254af..2a1d52095 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 7d0308b9a..8ea37658c 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index d6a7f995d..8c45932e6 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index a50701ee1..8a55c6dbd 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index f12f45a4b..ca2d157a4 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a7eb814fd..d4903a047 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 6796057e4..3fd82ebc6 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 042760f08..b384bb1b8 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f196bf170..6985486ae 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%91 @@ -67,30 +67,30 @@
+ + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5f050d667..3c2feddc6 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9bb8cbb08..5cdeb8e29 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%109 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 36efa7c28..31d680244 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%23 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + @@ -91,53 +91,53 @@ - + JSTypedArray->JSBridgedClass + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass @@ -151,7 +151,7 @@ - + JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6bed5cf98..564c851fc 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%3 @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c4fe39d49..f70572134 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%43 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index f298cd469..1995bdfbf 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%83 @@ -69,16 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSClosureProtocol + + @@ -90,26 +105,11 @@ - + JSClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSClosureProtocol - - - @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index e4773cdbf..3d5865b11 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%103 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 98dd9f2ad..a69c99ce3 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%123 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 22d0077ac..fb4ae9048 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%119 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 6aff886e2..4873d3d61 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 16a45788b..60064cab8 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%69 @@ -82,41 +82,56 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -Hashable - -Hashable - - - -JSObject->Hashable - + Equatable - -Equatable + +Equatable - + JSObject->Equatable + + + + + +Hashable + +Hashable + + + +JSObject->Hashable + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + JSClosure @@ -127,38 +142,23 @@ - + JSClosure->JSObject - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject @@ -375,7 +375,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index e1a8525c1..7f5b12185 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 0fe6c415b..4dbfbe10b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%37 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a89aecaeb..9368bf8e7 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 6e1639846..94fd4f7c0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%11 @@ -78,69 +78,69 @@
- + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSString->ConvertibleToJSValue +JSString->ConstructibleFromJSValue - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index e1e763b49..fea0fd571 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 9d2986c67..e8e1c0b30 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7e7b5565e..fe787ce15 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 58832f66e..c804f1b14 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%131 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 0891a39fb..d489af039 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%65 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 20fd202db..d025269d4 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%49 @@ -67,15 +67,15 @@
- + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - + -JSValue->Equatable +JSValue->ExpressibleByFloatLiteral @@ -86,68 +86,68 @@ CustomStringConvertible
- + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable @@ -516,7 +516,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 920a6c1dd..6cccebfd6 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3b0aa40c5..3c96f82b0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 6773d59f0..55181dc3c 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index edf449a18..3bf825d03 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 24c5bdac9..83a0fa650 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index ed77350d0..d762deebf 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%113 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 021f86691..86e3b2174 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 21a31c6e0..ffc525a7b 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index b71738b3f..6d3c677ba 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7a23e2c31..cb0634689 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%147 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 72037e093..eba39d45a 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 6260610d6..9c881c53f 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 1ee06ae0d..62534fb4a 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 33ca99e46..cfa24dd10 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 8859799b8..d0310d2da 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 218e943ad..a493400f7 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 69b0fee06..469c5590d 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 8efb30087..3614f0247 100644 --- a/index.html +++ b/index.html @@ -486,7 +486,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 0ef12ed33..a3d31bfad 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index ef89669c6..1e69387fd 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 45495b51afa35d278a55237232d50d75b3a353f7 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 10 Apr 2022 04:24:52 +0000 Subject: [PATCH 107/148] deploy: 8c20a891db7b065ae0ac3a9ec165bf030cbdfdb9 --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 46 ++-- JSBridgedType/index.html | 46 ++-- JSClosure/index.html | 38 +-- JSClosureProtocol/index.html | 12 +- JSDate/index.html | 6 +- JSError/index.html | 10 +- JSFunction/index.html | 8 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 121 ++++++---- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +-- JSPromise/index.html | 6 +- JSString/index.html | 66 ++--- JSSymbol/index.html | 282 ++++++++++++++++++++++ JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 100 ++++---- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 51 ++++ index.html | 26 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 51 ++++ 59 files changed, 751 insertions(+), 310 deletions(-) create mode 100644 JSSymbol/index.html create mode 100644 getJSValue(this_symbol_)/index.html create mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/Array/index.html b/Array/index.html index 8549b1922..660815ac9 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 02233e190..6a1490b6c 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 94767e171..514d7fe98 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%35 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 15d1aa755..85362f477 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%115 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b76b70108..82c6c64e2 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 5c0547c9f..c3f098c96 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 2a1d52095..76f3e0668 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 8ea37658c..a3f98e4ab 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 8c45932e6..5941dd1f8 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8a55c6dbd..e6c5bbe4c 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ca2d157a4..09dcb7d4f 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index d4903a047..ad9f322e1 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 3fd82ebc6..3d7fb5c3b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index b384bb1b8..bcc81ad03 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 6985486ae..f88c5f579 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%109 @@ -74,7 +74,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3c2feddc6..76a4b4d03 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5cdeb8e29..7b96d9bc7 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%17 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 31d680244..4f9122753 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%53 @@ -76,23 +76,23 @@
- + JSBridgedClass->JSBridgedType - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -106,23 +106,23 @@ - + JSArray->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -136,7 +136,7 @@ - + JSDate->JSBridgedClass @@ -151,7 +151,7 @@ - + JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 564c851fc..ed12235ed 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%127 @@ -67,6 +67,18 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + JSValueCompatible @@ -74,37 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f70572134..50165db64 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%71 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 1995bdfbf..f625fc9ec 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%3 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 3d5865b11..90854b69f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%121 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index a69c99ce3..4ac0fb80c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%27 @@ -75,7 +75,7 @@ Error
- + JSError->Error @@ -90,7 +90,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index fb4ae9048..f828ab953 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%67 @@ -274,7 +274,7 @@

construct(from:​)

-
public override class func construct(from value: JSValue) -> Self?  
+
override public class func construct(from value: JSValue) -> Self?  

@@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 4873d3d61..7e890babc 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 60064cab8..1398bbb17 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,101 +66,116 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%69 - + + + +%77 + JSObject - -JSObject + +JSObject - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSClosure - - -JSClosure +JSOneshotClosure + + +JSOneshotClosure - - -JSClosure->JSObject - - + + +JSOneshotClosure->JSObject + + - + -JSOneshotClosure - - -JSOneshotClosure +JSSymbol + + +JSSymbol - + -JSOneshotClosure->JSObject - - +JSSymbol->JSObject + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + @@ -181,6 +196,8 @@

Subclasses

JSFunction represents a function in JavaScript and supports new object instantiation. This type can be callable as a function using callAsFunction.

+
JSSymbol
+

Conforms To

@@ -375,7 +392,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7f5b12185..291a489af 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4dbfbe10b..9cc6d4968 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%21 @@ -66,33 +66,33 @@ - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 9368bf8e7..2fef875a6 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%99 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 94fd4f7c0..afa69d964 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%41 @@ -78,42 +78,39 @@
- + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible @@ -127,20 +124,23 @@ - + JSString->ConvertibleToJSValue - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html new file mode 100644 index 000000000..4ba492314 --- /dev/null +++ b/JSSymbol/index.html @@ -0,0 +1,282 @@ + + + + + + JavaScriptKit - JSSymbol + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + JSSymbol +

+ +
+
public class JSSymbol: JSObject  
+
+
+ +
+ + + + + + +%155 + + + +JSSymbol + + +JSSymbol + + + + + +JSObject + + +JSObject + + + + + +JSSymbol->JSObject + + + + + + + + +
+

Superclass

+
+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
+
public init(_ description: JSString)  
+
+
+
+

+ init(_:​) +

+
+
@_disfavoredOverload
+    public convenience init(_ description: String)  
+
+
+
+
+

Properties

+ +
+

+ name +

+
+
public var name: String?  
+
+
+
+

+ async​Iterator +

+
+
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
+
+
+
+

+ has​Instance +

+
+
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
+
+
+
+

+ is​Concat​Spreadable +

+
+
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
+
+
+
+

+ iterator +

+
+
public static let iterator: JSSymbol! = Symbol.iterator.symbol
+
+
+
+

+ match +

+
+
public static let match: JSSymbol! = Symbol.match.symbol
+
+
+
+

+ match​All +

+
+
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
+
+
+
+

+ replace +

+
+
public static let replace: JSSymbol! = Symbol.replace.symbol
+
+
+
+

+ search +

+
+
public static let search: JSSymbol! = Symbol.search.symbol
+
+
+
+

+ species +

+
+
public static let species: JSSymbol! = Symbol.species.symbol
+
+
+
+

+ split +

+
+
public static let split: JSSymbol! = Symbol.split.symbol
+
+
+
+

+ to​Primitive +

+
+
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
+
+
+
+

+ to​String​Tag +

+
+
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
+
+
+
+

+ unscopables +

+
+
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
+
+
+
+
+

Methods

+ +
+

+ `for`(key:​) +

+
+
public static func `for`(key: JSString) -> JSSymbol  
+
+
+
+

+ `for`(key:​) +

+
+
@_disfavoredOverload
+    public static func `for`(key: String) -> JSSymbol  
+
+
+
+

+ key(for:​) +

+
+
public static func key(for symbol: JSSymbol) -> JSString?  
+
+
+
+

+ key(for:​) +

+
+
@_disfavoredOverload
+    public static func key(for symbol: JSSymbol) -> String?  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index fea0fd571..f737bd043 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index e8e1c0b30..c4fe40b28 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index fe787ce15..2cd3ff845 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index c804f1b14..5f60d14e3 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%93 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index d489af039..534cbc454 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%151 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index d025269d4..babe1d90e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%135 @@ -67,63 +67,63 @@
- + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -134,7 +134,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -146,7 +146,7 @@ Equatable - + JSValue->Equatable @@ -200,7 +200,7 @@

init(nil​Literal:​)

-
public init(nilLiteral: ())  
+
public init(nilLiteral _: ())  
@@ -262,6 +262,14 @@

case function(JSFunction) 
+

+
+

+ symbol +

+
+
case symbol(JSSymbol) 
+
@@ -365,6 +373,14 @@

Returns the JSFunction of this JS value if its type is function. If not, returns nil.

+

+
+
+

+ symbol +

+
+
public var symbol: JSSymbol?  
@@ -418,7 +434,7 @@

from​JSValue()

-
public func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
+
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
@@ -426,7 +442,7 @@

string(_:​)

-
public static func string(_ value: String) -> JSValue  
+
static func string(_ value: String) -> JSValue  
@@ -435,7 +451,7 @@

@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    public static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
+ static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue

Deprecated: Please create JSClosure directly and manage its lifetime manually.

@@ -469,7 +485,7 @@

@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    public static func function(_ closure: JSClosure) -> JSValue  
+ static func function(_ closure: JSClosure) -> JSValue
@@ -477,7 +493,7 @@

is​Instance​Of(_:​)

-
public func isInstanceOf(_ constructor: JSFunction) -> Bool  
+
func isInstanceOf(_ constructor: JSFunction) -> Bool  

Return true if this value is an instance of the passed constructor function. @@ -516,7 +532,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 6cccebfd6..bad97d910 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3c96f82b0..1242b22c6 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 55181dc3c..000fd6d8e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3bf825d03..cda46b638 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 83a0fa650..f4dc97e75 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index d762deebf..33e71544e 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%103 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 86e3b2174..3a4d8165a 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index ffc525a7b..44784ea24 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6d3c677ba..55010134b 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index cb0634689..1f5de7983 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%11 @@ -66,33 +66,33 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index eba39d45a..4705d5fb2 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 9c881c53f..18348fa09 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 62534fb4a..df7d90582 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index cfa24dd10..0dec48bd3 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index d0310d2da..bb8011ed6 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index a493400f7..d6fbbefe9 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 469c5590d..2bdfd394b 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html new file mode 100644 index 000000000..c25b8844b --- /dev/null +++ b/getJSValue(this_symbol_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - getJSValue(this:symbol:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +get​JSValue(this:​symbol:​) +

+ +
+
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/index.html b/index.html index 3614f0247..f51d502bc 100644 --- a/index.html +++ b/index.html @@ -186,6 +186,14 @@

Classes

A JSObject wrapper that enables throwing method calls capturing this. Exceptions produced by JavaScript functions will be thrown as JSValue.

+ +
+ + JSSymbol + +
+
+
@@ -393,6 +401,22 @@

Functions

+
+
+ + get​JSValue(this:​symbol:​) + +
+
+ +
+
+ + set​JSValue(this:​symbol:​value:​) + +
+
+
@@ -486,7 +510,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index a3d31bfad..b81ca3708 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 1e69387fd..8bbf70904 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html new file mode 100644 index 000000000..2c4445cd0 --- /dev/null +++ b/setJSValue(this_symbol_value_)/index.html @@ -0,0 +1,51 @@ + + + + + + JavaScriptKit - setJSValue(this:symbol:value:) + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+Function +set​JSValue(this:​symbol:​value:​) +

+ +
+
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + From 8ee581f8d6fbf4325a3561a89bb91d5368d52d14 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Sun, 10 Apr 2022 14:38:56 +0000 Subject: [PATCH 108/148] deploy: a5a980d08648caef66ff5f5a4033f1079ac8878f --- Array/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++---- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBridgedClass/index.html | 98 +++++++++---------- JSBridgedType/index.html | 42 ++++---- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 +++---- JSDate/index.html | 38 ++++---- JSError/index.html | 50 +++++----- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 114 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 66 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 59 files changed, 393 insertions(+), 393 deletions(-) diff --git a/Array/index.html b/Array/index.html index 660815ac9..0c6d37348 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 6a1490b6c..02fda6ead 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 514d7fe98..b590b59ad 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%149 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 85362f477..5ca8edee1 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%77 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 82c6c64e2..6244230f4 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index c3f098c96..167d75ca9 100644 --- a/Double/index.html +++ b/Double/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 76f3e0668..f7b948a85 100644 --- a/Float/index.html +++ b/Float/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index a3f98e4ab..0827b0cb7 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 5941dd1f8..ca7f555ea 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e6c5bbe4c..fd4b311a6 100644 --- a/Int/index.html +++ b/Int/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 09dcb7d4f..4e5f66998 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index ad9f322e1..88411f96f 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 3d7fb5c3b..9f95d38fb 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index bcc81ad03..4f03ffb3d 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f88c5f579..fd415b72f 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%61 @@ -74,7 +74,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 76a4b4d03..5f1998b89 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7b96d9bc7..d291077c1 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%155 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4f9122753..8ee2d22a4 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%15 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSPromise - - -JSPromise + + +JSError + + +JSError - - -JSPromise->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index ed12235ed..3ccf55f91 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%29 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 50165db64..357975026 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%3 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index f625fc9ec..c80274079 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%111 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - + -JSOneshotClosure->JSClosureProtocol +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 90854b69f..d02c32bc7 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%119 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 4ac0fb80c..fb7bf5ec1 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%141 @@ -68,42 +68,42 @@
- - -Error - -Error - - - -JSError->Error - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible + + + + + +Error + +Error + + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index f828ab953..6972b115f 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7e890babc..44bf86ef0 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 1398bbb17..427790906 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%45 @@ -81,101 +81,101 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - - -JSSymbol - - -JSSymbol + + +JSOneshotClosure + + +JSOneshotClosure - - -JSSymbol->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + @@ -392,7 +392,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 291a489af..7c464fd89 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 9cc6d4968..b0f03a6a5 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%83 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 2fef875a6..7b851458e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%101 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index afa69d964..8239f7421 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%89 @@ -78,39 +78,42 @@
- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral @@ -124,23 +127,20 @@ - + JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 4ba492314..038ef77ed 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%41 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index f737bd043..c003c3cc3 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c4fe40b28..ffea55a5e 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2cd3ff845..bf4f26a97 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5f60d14e3..9bc4de475 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%9 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 534cbc454..5bb5344b9 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%37 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index babe1d90e..6149c3093 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%125 @@ -67,87 +67,87 @@
- + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByFloatLiteral +JSValue->ExpressibleByNilLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -532,7 +532,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index bad97d910..639304a1a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 1242b22c6..c4d153124 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 000fd6d8e..ef3ea5884 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index cda46b638..d49977ba1 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index f4dc97e75..7ec8792d8 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 33e71544e..fa8b8adc7 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%71 @@ -70,7 +70,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -82,7 +82,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 3a4d8165a..27bcfd874 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 44784ea24..d0e430d03 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 55010134b..56576fffe 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1f5de7983..0c8dc609d 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%105 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4705d5fb2..b077f3e07 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -73,7 +73,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 18348fa09..20a5ee2e7 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index df7d90582..0614ce655 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 0dec48bd3..2e9cdaac2 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index bb8011ed6..7513d5b1c 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index d6fbbefe9..ad4e2f974 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 2bdfd394b..22c6391fd 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index c25b8844b..1b0550316 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index f51d502bc..ede629281 100644 --- a/index.html +++ b/index.html @@ -510,7 +510,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index b81ca3708..d959cd833 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 8bbf70904..0ecb96537 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 2c4445cd0..d93768780 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 1f33336714d2af937742ae0130f99a280e82604d Mon Sep 17 00:00:00 2001 From: j-f1 Date: Fri, 22 Apr 2022 15:00:24 +0000 Subject: [PATCH 109/148] deploy: 34bf9e1d38efa139df51ef60aaf490115766ed66 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 59 ++++++ Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 38 ++-- Dictionary/index.html | 2 +- Double/index.html | 16 +- Float/index.html | 16 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 16 +- Int16/index.html | 16 +- Int32/index.html | 16 +- Int64/index.html | 20 +- Int8/index.html | 16 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 215 ++++++++++++++++++++++ JSBigIntExtended/index.html | 151 +++++++++++++++ JSBridgedClass/index.html | 88 ++++----- JSBridgedType/index.html | 46 ++--- JSClosure/index.html | 38 ++-- JSClosureProtocol/index.html | 48 ++--- JSDate/index.html | 36 ++-- JSError/index.html | 42 ++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 191 +++++++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++-- JSPromise/index.html | 6 +- JSString/index.html | 60 +++--- JSSymbol/index.html | 24 ++- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 ++-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 118 +++++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 71 +++++++ String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 16 +- UInt16/index.html | 16 +- UInt32/index.html | 16 +- UInt64/index.html | 20 +- UInt8/index.html | 16 +- UnsignedInteger/index.html | 71 +++++++ getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 30 ++- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 1135 insertions(+), 587 deletions(-) create mode 100644 BinaryFloatingPoint/index.html create mode 100644 JSBigInt/index.html create mode 100644 JSBigIntExtended/index.html create mode 100644 SignedInteger/index.html create mode 100644 UnsignedInteger/index.html diff --git a/Array/index.html b/Array/index.html index 0c6d37348..d0b15f293 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html new file mode 100644 index 000000000..90f88d99f --- /dev/null +++ b/BinaryFloatingPoint/index.html @@ -0,0 +1,59 @@ + + + + + + JavaScriptKit - BinaryFloatingPoint + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Extensions on + BinaryFloatingPoint +

+
+

Methods

+ +
+

+ construct(from:​) +

+
+
public static func construct(from value: JSValue) -> Self?  
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/Bool/index.html b/Bool/index.html index 02fda6ead..db494f87c 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index b590b59ad..7996878e8 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%17 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 5ca8edee1..ef8166035 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%3 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 6244230f4..56c75a7b8 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 167d75ca9..0d896794d 100644 --- a/Double/index.html +++ b/Double/index.html @@ -25,7 +25,7 @@ @@ -45,18 +45,6 @@

public var jsValue: JSValue  
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Double?  
-
@@ -64,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index f7b948a85..aa53089b1 100644 --- a/Float/index.html +++ b/Float/index.html @@ -25,7 +25,7 @@ @@ -45,18 +45,6 @@

public var jsValue: JSValue  
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Float?  
-
@@ -64,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 0827b0cb7..ad59e54b3 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ca7f555ea..a36ee0b35 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index fd4b311a6..128127b95 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -54,18 +54,6 @@

public static var typedArrayClass: JSFunction =
         valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 

-
- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -73,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 4e5f66998..80b5c584f 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Int16Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 88411f96f..2e5460c6a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Int32Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 9f95d38fb..e123f097c 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -25,7 +25,7 @@ @@ -38,24 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.BigInt64Array.function! 
-
-
-

Methods

- -
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Self?  
+
public var jsValue: JSValue  
@@ -64,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4f03ffb3d..09a087c18 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Int8Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index fd415b72f..b5af084e8 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%95 @@ -74,7 +74,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5f1998b89..3bdbecefd 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d291077c1..49b34dc85 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%115 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html new file mode 100644 index 000000000..dd3cb712f --- /dev/null +++ b/JSBigInt/index.html @@ -0,0 +1,215 @@ + + + + + + JavaScriptKit - JSBigInt + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Class + JSBig​Int +

+ +
+
public final class JSBigInt: JSObject  
+
+
+ +
+ + + + + + +%47 + + + +JSBigInt + + +JSBigInt + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + + + + +JSBigIntExtended->JSBigInt + + + + + + + + +
+

Superclass

+
+
JSObject
+

JSObject represents an object in JavaScript and supports dynamic member lookup. +Any member access like object.foo will dynamically request the JavaScript and Swift +runtime bridge library for a member with the specified name in this object.

+
+
+

Conforms To

+
+
JSBigIntExtended
+
+
+

Types Conforming to JSBig​Int

+
+
JSBigIntExtended
+
+
+
+
+

Initializers

+ +
+

+ init(_:​) +

+
+
public convenience init(_ value: Int64)  
+
+
+
+

+ init(unsigned:​) +

+
+
public convenience init(unsigned value: UInt64)  
+
+
+
+

+ init(id:​) +

+
+
@_spi(JSObject_id)
+    override public init(id: JavaScriptObjectRef)  
+
+
+
+
+

Properties

+ +
+

+ int64Value +

+
+
public var int64Value: Int64  
+
+
+
+

+ uInt64Value +

+
+
public var uInt64Value: UInt64  
+
+
+
+

+ js​Value +

+
+
override public var jsValue: JSValue  
+
+
+
+
+

Methods

+ +
+

+ construct(from:​) +

+
+
override public class func construct(from value: JSValue) -> Self?  
+
+
+
+

+ clamped(bit​Size:​signed:​) +

+
+
public func clamped(bitSize: Int, signed: Bool) -> JSBigInt  
+
+
+
+ + + +
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html new file mode 100644 index 000000000..4707c8c62 --- /dev/null +++ b/JSBigIntExtended/index.html @@ -0,0 +1,151 @@ + + + + + + JavaScriptKit - JSBigIntExtended + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+
+

+ Protocol + JSBig​Int​Extended +

+ +
+
public protocol JSBigIntExtended: JSBigInt  
+
+
+ +
+ + + + + + +%41 + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt + + +JSBigInt + + + + + +JSBigIntExtended->JSBigInt + + + + + +JSBigInt->JSBigIntExtended + + + + + + + + +
+

Conforms To

+
+
JSBigInt
+
+
+

Types Conforming to JSBig​Int​Extended

+
+
JSBigInt
+
+
+
+ + + +
+

Requirements

+ +
+

+ int64Value +

+
+
var int64Value: Int64  
+
+
+
+

+ uInt64Value +

+
+
var uInt64Value: UInt64  
+
+
+
+

+ init(_:​) +

+
+
init(_ value: Int64) 
+
+
+
+

+ init(unsigned:​) +

+
+
init(unsigned value: UInt64) 
+
+
+
+
+
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 8ee2d22a4..f320bdc1a 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%101 @@ -67,62 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSError - - -JSError + + +JSDate + + +JSDate - - -JSError->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass - - + + - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass @@ -136,23 +136,23 @@ - + JSPromise->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 3ccf55f91..331fe6616 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -67,44 +67,44 @@

- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - + -JSBridgedType->CustomStringConvertible - - +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 357975026..37f178411 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%23 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index c80274079..420450195 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%77 @@ -69,31 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - + + @@ -105,11 +90,26 @@ - + JSOneshotClosure->JSClosureProtocol + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index d02c32bc7..ea544804f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%125 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index fb7bf5ec1..2c15c8ce1 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%9 @@ -68,18 +68,15 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error @@ -90,20 +87,23 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 6972b115f..24219750e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%37 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 44bf86ef0..5a5a71e80 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 427790906..29a229580 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -25,7 +25,7 @@ @@ -66,116 +66,131 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - - - -%45 - + + + +%131 + JSObject - -JSObject + +JSObject - + +Hashable + +Hashable + + + +JSObject->Hashable + + + + + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -Hashable - -Hashable - - - -JSObject->Hashable - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - + + - + JSSymbol - - -JSSymbol + + +JSSymbol JSSymbol->JSObject - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + + +JSBigInt + + +JSBigInt + + + + + +JSBigInt->JSObject + + + + -JSClosure - - -JSClosure +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + @@ -185,7 +200,9 @@

Subclasses

-
JSOneshotClosure
+
JSBigInt
+
+
JSOneshotClosure

JSOneshotClosure is a JavaScript function that can be called only once.

JSClosure
@@ -206,15 +223,37 @@

Conforms To

Hashable
+
+

Initializers

+ +
+

+ init(id:​) +

+
+
@_spi(JSObject_id)
+    public init(id: JavaScriptObjectRef)  
+
+
+

Properties

-
+
+

+ id +

+
+
@_spi(JSObject_id)
+    public var id: JavaScriptObjectRef
+
+
+

- `throwing` + throwing

-
public var `throwing`: JSThrowingObject  
+
public var throwing: JSThrowingObject  

A modifier to call methods as throwing methods capturing this

@@ -392,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 7c464fd89..2e32e0a83 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index b0f03a6a5..175c4b85c 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%149 @@ -66,33 +66,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 7b851458e..d2abdc86c 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%171 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 8239f7421..d474e4a0a 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%65 @@ -78,57 +78,57 @@
- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -139,7 +139,7 @@ Equatable - + JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 038ef77ed..b98dddb4f 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -25,7 +25,7 @@ @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%85 @@ -124,6 +124,14 @@

public var name: String?  

+
+

+ js​Value +

+
+
override public var jsValue: JSValue  
+
+

async​Iterator @@ -265,6 +273,14 @@

@_disfavoredOverload
     public static func key(for symbol: JSSymbol) -> String?  

+
+
+

+ construct(from:​) +

+
+
override public class func construct(from value: JSValue) -> Self?  
+
@@ -275,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c003c3cc3..0061716ec 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index ffea55a5e..c99ea6c2c 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index bf4f26a97..90978d2e3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 9bc4de475..ca8448d5e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%89 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 5bb5344b9..93e85700f 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%55 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 6149c3093..cfcb69b55 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -25,7 +25,7 @@ @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%155 @@ -67,87 +67,87 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable @@ -270,6 +270,14 @@

case symbol(JSSymbol) 
+

+
+

+ big​Int +

+
+
case bigInt(JSBigInt) 
+
@@ -381,6 +389,24 @@

public var symbol: JSSymbol?  
+
+
+

Returns the JSSymbol of this JS value if its type is function. +If not, returns nil.

+ +
+
+
+

+ big​Int +

+
+
public var bigInt: JSBigInt?  
+
+
+

Returns the JSBigInt of this JS value if its type is function. +If not, returns nil.

+
@@ -532,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 639304a1a..65a8f91c4 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c4d153124..c64052116 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ef3ea5884..8ca92d7a8 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d49977ba1..827f43868 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 7ec8792d8..a640f572d 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index fa8b8adc7..77958c637 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%59 @@ -63,27 +63,27 @@ - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 27bcfd874..6fa0dafad 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index d0e430d03..bde6edaaa 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html new file mode 100644 index 000000000..cf475876d --- /dev/null +++ b/SignedInteger/index.html @@ -0,0 +1,71 @@ + + + + + + JavaScriptKit - SignedInteger + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+ +
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/String/index.html b/String/index.html index 56576fffe..9729bedc1 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 0c8dc609d..439e6dcf8 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%119 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b077f3e07..49e5ba8dc 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -54,18 +54,6 @@

public static var typedArrayClass: JSFunction =
         valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 

-
- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -73,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 20a5ee2e7..611724847 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Uint16Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 0614ce655..0b87394b8 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Uint32Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 2e9cdaac2..133ef748f 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -25,7 +25,7 @@ @@ -38,24 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.BigUint64Array.function! 
-
-
-

Methods

- -
+

- construct(from:​) + js​Value

-
public static func construct(from value: JSValue) -> Self?  
+
public var jsValue: JSValue  
@@ -64,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 7513d5b1c..0d2e1a12b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -53,18 +53,6 @@

public static var typedArrayClass = JSObject.global.Uint8Array.function! 
-

- -
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
@@ -72,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html new file mode 100644 index 000000000..38c69ca15 --- /dev/null +++ b/UnsignedInteger/index.html @@ -0,0 +1,71 @@ + + + + + + JavaScriptKit - UnsignedInteger + + + +
+ + + JavaScriptKit + + Documentation + +
+ + + + + +
+ +
+ +
+

+ Generated on using swift-doc 1.0.0-rc.1. +

+
+ + diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index ad4e2f974..06dabd8db 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 22c6391fd..9a7a07434 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 1b0550316..1cbab96b0 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index ede629281..25d2453d1 100644 --- a/index.html +++ b/index.html @@ -136,6 +136,14 @@

Classes

+
+
+ + JSBig​Int + +
+
+
@@ -273,6 +281,14 @@

Protocols

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

+
+
+ + JSBig​Int​Extended + +
+
+
@@ -427,6 +443,10 @@

Extensions

Array
+
+ BinaryFloatingPoint +
+
Bool
@@ -479,6 +499,10 @@

Extensions

RawJSValue
+
+ SignedInteger +
+
String
@@ -502,6 +526,10 @@

Extensions

UInt8
+
+
+ UnsignedInteger +
@@ -510,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d959cd833..f57cdbb05 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 0ecb96537..96d8af112 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index d93768780..b81ed283d 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From d7cedee0cf4eae1398a65e999b1358dc2d9f9e64 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 2 May 2022 13:26:41 +0000 Subject: [PATCH 110/148] deploy: e858322232520101be4cf2306660bd42b38c3422 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 +++++------ JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 74 +++++++------- JSBridgedType/index.html | 12 +-- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 6 +- JSError/index.html | 12 +-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 116 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 64 ++++++------ JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 14 +-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 86 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 6 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 318 insertions(+), 318 deletions(-) diff --git a/Array/index.html b/Array/index.html index d0b15f293..cd81269ed 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 90f88d99f..27cb555ae 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index db494f87c..1b700090f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7996878e8..766bfb1dc 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%49 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ef8166035..6147567b0 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%69 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 56c75a7b8..26c6a2d3f 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 0d896794d..0b07bd199 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index aa53089b1..ab4f2ef8d 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index ad59e54b3..19b5ea5dd 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index a36ee0b35..da5c1ac63 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 128127b95..dd7b5ffec 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 80b5c584f..ba4a2a857 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 2e5460c6a..1e2f8984e 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index e123f097c..570f89051 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 09a087c18..9230eb31a 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b5af084e8..1b3baec95 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%157 @@ -74,7 +74,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3bdbecefd..b01027f72 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 49b34dc85..823544718 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%163 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index dd3cb712f..e7696f634 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%95 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended - + JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 4707c8c62..8b636337b 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%75 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f320bdc1a..972c9b6ef 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%3 @@ -76,53 +76,53 @@
- + JSBridgedClass->JSBridgedType - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -136,23 +136,23 @@ - + JSPromise->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -198,8 +198,8 @@

Types Conforming to JSBridged​Class

is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

JSTypedArray
-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: BigInt-based TypedArrays are currently not supported.

+

A wrapper around all JavaScript TypedArray +classes that exposes their properties in a type-safe way.

@@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 331fe6616..cfff8640b 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%81 @@ -74,7 +74,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -86,7 +86,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 37f178411..8c46f72f3 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%27 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 420450195..d3a1e9cfc 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%55 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index ea544804f..57fca75e4 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%103 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 2c15c8ce1..ecb50610e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%167 @@ -75,7 +75,7 @@ Error
- + JSError->Error @@ -87,7 +87,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 24219750e..73130dea4 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%145 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 5a5a71e80..bc7c1b05a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 29a229580..e9bddbb2c 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%109 @@ -88,109 +88,109 @@ Hashable
- + JSObject->Hashable - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject - + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 2e32e0a83..dbc952f20 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 175c4b85c..af309163e 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%89 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index d2abdc86c..dff5ae751 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%17 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index d474e4a0a..d6823dc55 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%127 @@ -78,42 +78,42 @@
- - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -127,20 +127,20 @@ - + JSString->ConstructibleFromJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index b98dddb4f..c0bfa0d97 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%149 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 0061716ec..81c1ea167 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c99ea6c2c..75aeb6f8a 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 90978d2e3..cc0ab874c 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ca8448d5e..0ef830d6c 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -40,8 +40,8 @@

public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement  

-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: BigInt-based TypedArrays are currently not supported.

+

A wrapper around all JavaScript TypedArray +classes that exposes their properties in a type-safe way.

@@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%63 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 93e85700f..84bc350dd 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%153 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index cfcb69b55..e261dd592 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%33 @@ -67,87 +67,87 @@
- + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - + -JSValue->JSValueCompatible +JSValue->Equatable - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 65a8f91c4..dc40ab324 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c64052116..8b6635df6 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 8ca92d7a8..dee034a98 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 827f43868..d148969df 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a640f572d..be7afec8f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 77958c637..0460b0cbc 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%21 @@ -70,7 +70,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -82,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 6fa0dafad..2d3e307ea 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index bde6edaaa..8c0330797 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index cf475876d..17a2b3680 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 9729bedc1..59ecb7015 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 439e6dcf8..60535fd91 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%139 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 49e5ba8dc..4860802fe 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 611724847..9a967b532 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 0b87394b8..21163127b 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 133ef748f..a647525ac 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 0d2e1a12b..798bf0bc3 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 38c69ca15..d3f62b62e 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 06dabd8db..784f5b4eb 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9a7a07434..0e33e2d5d 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 1cbab96b0..c28441d87 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 25d2453d1..8b72871f2 100644 --- a/index.html +++ b/index.html @@ -125,8 +125,8 @@

Classes

-

A wrapper around all JavaScript TypedArray classes that exposes their properties in a type-safe way. -FIXME: BigInt-based TypedArrays are currently not supported.

+

A wrapper around all JavaScript TypedArray +classes that exposes their properties in a type-safe way.

@@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index f57cdbb05..2ff347c86 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 96d8af112..d6182e1df 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index b81ed283d..df8509f90 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 892b9a5a9a3f93e27d042851436cbacbf1023dd7 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Tue, 3 May 2022 12:14:13 +0000 Subject: [PATCH 111/148] deploy: e6b326dc3fc0c2fb27255cb3fd71f78f874d8578 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++---- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 78 ++++++++-------- JSBridgedType/index.html | 52 +++++------ JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 48 +++++----- JSDate/index.html | 6 +- JSError/index.html | 32 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 108 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 30 +++--- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 383 insertions(+), 383 deletions(-) diff --git a/Array/index.html b/Array/index.html index cd81269ed..1e3dd2f9a 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 27cb555ae..e73159aa9 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 1b700090f..6b93defc8 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 766bfb1dc..a18d12fec 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%59 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 6147567b0..7400b4d80 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%31 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 26c6a2d3f..2a4a40659 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 0b07bd199..fd052716c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ab4f2ef8d..93d80105f 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 19b5ea5dd..1fa2e5e4c 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index da5c1ac63..674cd9c06 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index dd7b5ffec..deef037db 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ba4a2a857..5cc2e66f8 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 1e2f8984e..34a65152d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 570f89051..845ce325f 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 9230eb31a..dd823541d 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 1b3baec95..1137f4f9d 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%153 @@ -67,30 +67,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b01027f72..ce0e36eb0 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 823544718..5e3c8328b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%89 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index e7696f634..b012c2953 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%93 @@ -72,7 +72,7 @@
- + JSBigInt->JSBigIntExtended @@ -93,7 +93,7 @@ - + JSBigIntExtended->JSBigInt @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 8b636337b..6119d6f6d 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%141 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 972c9b6ef..2887f85ce 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%127 @@ -67,77 +67,77 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - - -JSError +JSArray + + +JSArray - + -JSError->JSBridgedClass +JSArray->JSBridgedClass - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - + + - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index cfff8640b..13cf396c1 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%71 @@ -67,44 +67,44 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - - -JSBridgedType->CustomStringConvertible - - + + +JSBridgedType->JSValueCompatible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8c46f72f3..fd7026bb7 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%83 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index d3a1e9cfc..47c433abe 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%119 @@ -69,16 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + @@ -95,21 +110,6 @@ - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - - @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 57fca75e4..7d6af409c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%147 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index ecb50610e..d09e73074 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%51 @@ -68,27 +68,27 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 73130dea4..a802e2d2b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%43 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index bc7c1b05a..2493730c4 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index e9bddbb2c..ab58e1f78 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%101 @@ -82,100 +82,100 @@
- + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSOneshotClosure + + +JSOneshotClosure - - -JSFunction->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSSymbol - - -JSSymbol + + +JSSymbol - + JSSymbol->JSObject - - + + @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index dbc952f20..380a78a82 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index af309163e..33cf1b496 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%9 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSObject @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index dff5ae751..8b6dc5863 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%47 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index d6823dc55..0b02b04aa 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%163 @@ -88,32 +88,32 @@
- + JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSString->Equatable +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index c0bfa0d97..f9c5d1d0a 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%159 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 81c1ea167..6cbc4c569 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 75aeb6f8a..15f66afb2 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index cc0ab874c..945c811d6 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0ef830d6c..0e22f9f30 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%65 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 84bc350dd..c60c69037 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%79 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index e261dd592..b789d6f68 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%15 @@ -67,63 +67,63 @@
- + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral @@ -134,20 +134,20 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index dc40ab324..f01f53a3a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 8b6635df6..356cdafda 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index dee034a98..60923a4c4 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d148969df..ef7f089ba 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index be7afec8f..915479d62 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 0460b0cbc..c47fd51e1 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%37 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 2d3e307ea..7ac523c59 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 8c0330797..4919ecb04 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 17a2b3680..559f54d0d 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 59ecb7015..6dc3f5bd5 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 60535fd91..6176f9bcc 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%3 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4860802fe..d8b03e607 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 9a967b532..99c376208 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 21163127b..07eade8d7 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index a647525ac..8343a121a 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 798bf0bc3..516bfefd9 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index d3f62b62e..43fc9e04a 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 784f5b4eb..a0e9ce799 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 0e33e2d5d..0c2920f90 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index c28441d87..a21970dc9 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 8b72871f2..6bd5f429b 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 2ff347c86..bb1f27a34 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index d6182e1df..b95ef0a64 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index df8509f90..474539809 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From c78a8c96fb14b634f7dc863be34e3a11adab62cb Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 11 May 2022 13:19:49 +0000 Subject: [PATCH 112/148] deploy: c1a0923c25990ec8a7b6fe83c79b9347f772a73d --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 38 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 +++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 80 ++++++------- JSBridgedType/index.html | 10 +- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 12 +- JSDate/index.html | 10 +- JSError/index.html | 50 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 138 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 64 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 +++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 375 insertions(+), 375 deletions(-) diff --git a/Array/index.html b/Array/index.html index 1e3dd2f9a..0eb9ee55b 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index e73159aa9..307421032 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 6b93defc8..61c337d9b 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index a18d12fec..4e3b43433 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%67 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 7400b4d80..1a54b7d24 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%3 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 2a4a40659..0b07965e2 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index fd052716c..c395c94e8 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 93d80105f..056474a7e 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 1fa2e5e4c..102885768 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 674cd9c06..93dbdda88 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index deef037db..d4ee5f7af 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 5cc2e66f8..4c2c5bb1e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 34a65152d..a2be47540 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 845ce325f..fa00bb167 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index dd823541d..0a4aae798 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 1137f4f9d..d9422ea0e 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%113 @@ -77,7 +77,7 @@
- + JSArray->JSBridgedClass @@ -89,7 +89,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index ce0e36eb0..faf1371e1 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5e3c8328b..a90e577e5 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%9 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index b012c2953..ad1c84a92 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%141 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + - + + +JSBigIntExtended + + +JSBigIntExtended + + + + +JSBigInt->JSBigIntExtended + + + + + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 6119d6f6d..663405049 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%97 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 2887f85ce..272454bc8 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%77 @@ -67,35 +67,50 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSArray - - -JSArray +JSError + + +JSError - + -JSArray->JSBridgedClass +JSError->JSBridgedClass + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + JSDate @@ -106,7 +121,7 @@ - + JSDate->JSBridgedClass @@ -121,38 +136,23 @@ - + JSPromise->JSBridgedClass - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 13cf396c1..4154801ed 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%125 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index fd7026bb7..1f272513d 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%29 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 47c433abe..75e8b4eb0 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%149 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 7d6af409c..d32846cd3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%19 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index d09e73074..cae240cac 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%133 @@ -68,42 +68,42 @@
- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index a802e2d2b..a20966ac8 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%109 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 2493730c4..1ef05c29a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index ab58e1f78..06b308bd5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%157 @@ -82,70 +82,100 @@
- + Hashable - -Hashable + +Hashable JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject - - -JSFunction - - -JSFunction + + +JSBigInt + + +JSBigInt - - -JSFunction->JSObject - - + + +JSBigInt->JSObject + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + @@ -157,41 +187,11 @@ - + JSOneshotClosure->JSObject - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - - - - -JSBigInt - - -JSBigInt - - - - - -JSBigInt->JSObject - - - @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 380a78a82..4fa987600 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 33cf1b496..ac5a52e55 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%103 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 8b6dc5863..75dbdf59f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%25 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0b02b04aa..15fd05a05 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%35 @@ -88,59 +88,59 @@
- + JSString->ConvertibleToJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index f9c5d1d0a..493cc7fd9 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%47 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 6cbc4c569..10950701b 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 15f66afb2..fdaca4767 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 945c811d6..6807bd64a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 0e22f9f30..7efc2cd44 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%91 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index c60c69037..41c32fd34 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%73 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b789d6f68..61ce8c082 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%51 @@ -67,87 +67,87 @@
- + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - + -JSValue->Equatable +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index f01f53a3a..16c7aae76 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 356cdafda..efdcb0d32 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 60923a4c4..e4035c2bf 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ef7f089ba..80d3f59c2 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 915479d62..5849ab455 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index c47fd51e1..8fb6a7bce 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%119 @@ -63,27 +63,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7ac523c59..79b155118 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 4919ecb04..70048bcc8 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 559f54d0d..4463d0655 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 6dc3f5bd5..eeef5f326 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 6176f9bcc..e420a1ef9 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%13 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index d8b03e607..a44fef333 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 99c376208..725997867 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 07eade8d7..00ecbde3e 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 8343a121a..bf53b9a42 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 516bfefd9..a56048238 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 43fc9e04a..c6b9774b7 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index a0e9ce799..c3fbb8b0d 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 0c2920f90..8ebfa0b77 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index a21970dc9..799236e0e 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 6bd5f429b..e2c711842 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index bb1f27a34..0ee690889 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index b95ef0a64..1527e37fb 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 474539809..e88ac5b7c 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 90a40e0cdec3d81afd6590e17f2d5f12db0e2df4 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 12 May 2022 13:17:33 +0000 Subject: [PATCH 113/148] deploy: e022311ed98324ac176e9ffba45d7aab97f29a57 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 34 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 +-- Int16/index.html | 16 +-- Int32/index.html | 16 +-- Int64/index.html | 2 +- Int8/index.html | 16 +-- JSArray/index.html | 38 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 56 +++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 80 ++++++------- JSBridgedType/index.html | 46 ++++---- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 32 +++--- JSDate/index.html | 38 +++---- JSError/index.html | 40 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 130 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 66 +++++------ JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 18 +-- UInt16/index.html | 16 +-- UInt32/index.html | 16 +-- UInt64/index.html | 2 +- UInt8/index.html | 16 +-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 513 insertions(+), 513 deletions(-) diff --git a/Array/index.html b/Array/index.html index 0eb9ee55b..994008647 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 307421032..735dbcd2a 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 61c337d9b..e05f971c0 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 4e3b43433..508348a86 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%131 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 1a54b7d24..cafbb503f 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%43 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 0b07965e2..4f88d2ba9 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index c395c94e8..1cef586bd 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 056474a7e..326c01273 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 102885768..1cb5ff730 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 93dbdda88..339646c09 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index d4ee5f7af..f72f20ed5 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 4c2c5bb1e..ec43a8b4e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a2be47540..174047a8e 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index fa00bb167..2579a3e7e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 0a4aae798..aa51e78d9 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index d9422ea0e..01600f339 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%169 @@ -67,30 +67,30 @@ + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index faf1371e1..aecb7a75f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a90e577e5..140ce71f0 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%107 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index ad1c84a92..095e9d733 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%31 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 663405049..661b15de9 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%163 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 272454bc8..80ae82130 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%141 @@ -67,47 +67,47 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSPromise + -JSError +JSPromise - + -JSError->JSBridgedClass +JSPromise->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass @@ -121,40 +121,40 @@ - + JSDate->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 4154801ed..2ebfcac64 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%117 @@ -67,18 +67,6 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - JSValueCompatible @@ -86,25 +74,37 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1f272513d..3da542068 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%49 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 75e8b4eb0..043cc6d0a 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%155 @@ -69,16 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + @@ -96,19 +96,19 @@ - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index d32846cd3..b10e9e062 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%111 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index cae240cac..d6317f2ad 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%11 @@ -68,30 +68,30 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index a20966ac8..e242630f7 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%39 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1ef05c29a..1d4a7a3d2 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 06b308bd5..45917b8a2 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%83 @@ -82,116 +82,116 @@
- + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - - -JSFunction->JSObject + + +JSOneshotClosure->JSObject - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - - - + -JSBigInt - - -JSBigInt +JSClosure + + +JSClosure - - -JSBigInt->JSObject + + +JSClosure->JSObject - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject + + +JSBigInt + + +JSBigInt + + + + + +JSBigInt->JSObject + + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4fa987600..0c24174c0 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index ac5a52e55..4f651d674 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%125 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 75dbdf59f..cb86d5642 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%7 @@ -279,7 +279,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 15fd05a05..0f2727c08 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%55 @@ -78,54 +78,54 @@
- - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -139,7 +139,7 @@ - + JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 493cc7fd9..40b7b683d 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%137 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 10950701b..cd2540bc8 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index fdaca4767..32f3d5e9b 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6807bd64a..eee646e14 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 7efc2cd44..8d9b29373 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%101 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 41c32fd34..9eeb5adb4 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%3 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 61ce8c082..92d9e5776 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%67 @@ -67,51 +67,51 @@
- + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable @@ -122,32 +122,32 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 16c7aae76..3f56b8e2a 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index efdcb0d32..a256a4425 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index e4035c2bf..c796b62bb 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 80d3f59c2..53a3f72b4 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5849ab455..69ec27ad3 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 8fb6a7bce..d1806192b 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%19 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 79b155118..c59bab41e 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 70048bcc8..e19aff74b 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 4463d0655..c9067f146 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index eeef5f326..c3ac760b5 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e420a1ef9..5aec56c67 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%25 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index a44fef333..d5df76d19 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 725997867..ce49012be 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 00ecbde3e..798aa82dc 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index bf53b9a42..074b63817 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index a56048238..41b479c86 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index c6b9774b7..30173ada2 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index c3fbb8b0d..7fe35a3f8 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 8ebfa0b77..477f69687 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 799236e0e..72cf7315d 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index e2c711842..d4824e442 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 0ee690889..315a60ad5 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 1527e37fb..7c281cc6e 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index e88ac5b7c..7c0fe69b4 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From c72d9bb40b8a316cb388d29f0ee5b4da293126ae Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Mon, 16 May 2022 16:50:42 +0000 Subject: [PATCH 114/148] deploy: ab3da740b2fb355f2c7b1a05e2eac11e541316ad --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 38 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 12 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 56 +++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 112 ++++++++++---------- JSBridgedType/index.html | 48 ++++----- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 12 +-- JSDate/index.html | 8 +- JSError/index.html | 42 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 120 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 18 ++-- JSString/index.html | 80 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 42 ++++---- JSUInt8ClampedArray/index.html | 8 +- JSValue/index.html | 68 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 443 insertions(+), 441 deletions(-) diff --git a/Array/index.html b/Array/index.html index 994008647..cf23b0937 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 735dbcd2a..073255979 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index e05f971c0..8fb9906ac 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 508348a86..13d375a4a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%169 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index cafbb503f..442490173 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%75 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 4f88d2ba9..e3da3812e 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 1cef586bd..bddc571e5 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 326c01273..0416837c6 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 1cb5ff730..401374f81 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 339646c09..350a0f5e6 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index f72f20ed5..625472064 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ec43a8b4e..5beb64781 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 174047a8e..eb51c0b0d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 2579a3e7e..86316aec4 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index aa51e78d9..db3fa2b4e 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 01600f339..8f0dcb38a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%145 @@ -74,7 +74,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -185,7 +185,7 @@

constructor

-
public static let constructor = JSObject.global.Array.function! 
+
public static let constructor = JSObject.global.Array.function

@@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index aecb7a75f..cfd4d7e3a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 140ce71f0..d25fd11f7 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%81 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 095e9d733..f2ca1eed7 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%67 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject JSBigInt->JSObject - - + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 661b15de9..037af20a8 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%121 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 80ae82130..ecd783b4f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%101 @@ -67,94 +67,94 @@ - + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + + + JSPromise - - -JSPromise + + +JSPromise JSPromise->JSBridgedClass - - + + - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + JSDate - - -JSDate + + +JSDate - + JSDate->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - + + @@ -211,7 +211,7 @@

js​Value

-
public var jsValue: JSValue  
+
var jsValue: JSValue  
@@ -219,7 +219,7 @@

init?(from:​)

-
public init?(from value: JSValue)  
+
init?(from value: JSValue)  
@@ -227,7 +227,7 @@

init?(from:​)

-
public init?(from object: JSObject)  
+
init?(from object: JSObject)  
@@ -241,7 +241,7 @@

constructor

-
static var constructor: JSFunction  
+
static var constructor: JSFunction?  

The constructor function for the JavaScript class

@@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 2ebfcac64..6a96abd2c 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%161 @@ -68,43 +68,43 @@ - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -132,7 +132,7 @@

construct(from:​)

-
public static func construct(from value: JSValue) -> Self?  
+
static func construct(from value: JSValue) -> Self?  
@@ -140,7 +140,7 @@

description

-
public var description: String  
+
var description: String  
@@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 3da542068..dbc43073e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%155 @@ -80,33 +80,33 @@ - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 043cc6d0a..ee963c354 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%3 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index b10e9e062..173875f32 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%127 @@ -167,7 +167,7 @@

constructor

-
public static let constructor = JSObject.global.Date.function! 
+
public static let constructor = JSObject.global.Date.function

The constructor function used to create new Date objects.

@@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index d6317f2ad..dfeb78d8e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%137 @@ -68,30 +68,30 @@ - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -154,7 +154,7 @@

constructor

-
public static let constructor = JSObject.global.Error.function! 
+
public static let constructor = JSObject.global.Error.function

The constructor function used to create new JavaScript Error objects.

@@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index e242630f7..8c9f62cad 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%85 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 1d4a7a3d2..cf2a21da9 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 45917b8a2..30c01778b 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%11 @@ -88,109 +88,109 @@ Hashable - + JSObject->Hashable - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject - - -JSClosure - - -JSClosure + + +JSSymbol + + +JSSymbol - - -JSClosure->JSObject - - + + +JSSymbol->JSObject + + - + -JSSymbol - +JSOneshotClosure + -JSSymbol +JSOneshotClosure - - -JSSymbol->JSObject + + +JSOneshotClosure->JSObject - + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - + JSBigInt - - -JSBigInt + + +JSBigInt JSBigInt->JSObject - - + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 0c24174c0..cac27f95b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4f651d674..fd4979326 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%95 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index cb86d5642..c219fcd8f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%29 @@ -138,7 +138,7 @@

init(resolver:​)

-
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> ()) -> ())  
+
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> Void) -> Void)  

Creates a new JSPromise instance from a given resolver closure. resolver takes @@ -167,7 +167,7 @@

constructor

-
public static var constructor: JSFunction  
+
public static var constructor: JSFunction?  
@@ -235,8 +235,10 @@

@discardableResult
-    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue,
-                     failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  
+ public func then( + success: @escaping (JSValue) -> ConvertibleToJSValue, + failure: @escaping (JSValue) -> ConvertibleToJSValue + ) -> JSPromise

Schedules the success closure to be invoked on sucessful completion of self.

@@ -262,7 +264,7 @@

@discardableResult
-    public func finally(successOrFailure: @escaping () -> ()) -> JSPromise  
+ public func finally(successOrFailure: @escaping () -> Void) -> JSPromise

Schedules the failure closure to be invoked on either successful or rejected completion of @@ -279,7 +281,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0f2727c08..dcf0b4cb1 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -78,69 +78,69 @@

- - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue - - + + - + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral + + + + + +ConstructibleFromJSValue + + +ConstructibleFromJSValue + + + + + +JSString->ConstructibleFromJSValue - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 40b7b683d..26d039b76 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%151 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index cd2540bc8..6ceed88c8 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 32f3d5e9b..7cbb60056 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index eee646e14..d598a6c5e 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 8d9b29373..00ab4f45a 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%115 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -148,7 +148,7 @@

init(unsafely​Wrapping:​)

-
required public init(unsafelyWrapping jsObject: JSObject)  
+
public required init(unsafelyWrapping jsObject: JSObject)  
@@ -156,7 +156,7 @@

init(array​Literal:​)

-
required public convenience init(arrayLiteral elements: Element...)  
+
public required convenience init(arrayLiteral elements: Element...)  
@@ -211,7 +211,7 @@

constructor

-
public class var constructor: JSFunction  
+
public class var constructor: JSFunction?  
@@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 9eeb5adb4..4bfd0acaa 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%133 @@ -93,7 +93,7 @@

constructor

-
public class override var constructor: JSFunction  
+
override public class var constructor: JSFunction?  
@@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 92d9e5776..a534677dd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%39 @@ -67,15 +67,15 @@ - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral @@ -98,56 +98,56 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSValue->Equatable +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible @@ -288,7 +288,7 @@

array

-
public var array: JSArray?  
+
var array: JSArray?  
@@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 3f56b8e2a..6285f0ced 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index a256a4425..2e0e8df6f 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index c796b62bb..893613622 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 53a3f72b4..f81ea2776 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 69ec27ad3..ce87c84ac 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index d1806192b..93fdc1ff3 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%33 @@ -63,27 +63,27 @@ - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index c59bab41e..7637afe5d 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index e19aff74b..d86f001e3 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index c9067f146..3704367d4 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index c3ac760b5..ad6458ff9 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 5aec56c67..fab19df9c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%89 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index d5df76d19..b81a5d701 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index ce49012be..46d72d65a 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 798aa82dc..6d2ac42cf 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 074b63817..948f7c102 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 41b479c86..96f8f1b04 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 30173ada2..4890f75de 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 7fe35a3f8..4b99ee1f1 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 477f69687..eb57d5ad4 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 72cf7315d..191f16b1f 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index d4824e442..6e99e28fc 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 315a60ad5..db64aba27 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 7c281cc6e..187a819e8 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 7c0fe69b4..8f4433a15 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 3d24bad9c81eda256ca9656f73b58e1f0455350f Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 17 May 2022 01:03:35 +0000 Subject: [PATCH 115/148] deploy: df6651f037d5d0e76884a4d27fe66e1f59760b64 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 12 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 104 ++++++++-------- JSBridgedType/index.html | 12 +- JSClosure/index.html | 46 +++---- JSClosureProtocol/index.html | 48 ++++---- JSDate/index.html | 38 +++--- JSError/index.html | 50 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 142 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 18 +-- JSPromise/index.html | 6 +- JSString/index.html | 78 ++++++------ JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 +++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 443 insertions(+), 443 deletions(-) diff --git a/Array/index.html b/Array/index.html index cf23b0937..38f222f20 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 073255979..fba28344e 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 8fb9906ac..3f40134c5 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 13d375a4a..0bc72e93f 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%85 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 442490173..19e96ebc1 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%91 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index e3da3812e..2fcb88412 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index bddc571e5..96497d80c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 0416837c6..6acf56242 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 401374f81..ecdcfaa24 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 350a0f5e6..d23eed271 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 625472064..a14bec0c3 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 5beb64781..8b07283d1 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index eb51c0b0d..f47da9e32 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 86316aec4..eba33cc93 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index db3fa2b4e..f5f6feb72 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 8f0dcb38a..3ece57f3c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%79 @@ -74,7 +74,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index cfd4d7e3a..6d169a267 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d25fd11f7..8975c5b59 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%15 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index f2ca1eed7..a62fff65b 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%137 @@ -72,7 +72,7 @@
- + JSBigInt->JSObject @@ -87,13 +87,13 @@ - + JSBigInt->JSBigIntExtended - + JSBigIntExtended->JSBigInt @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 037af20a8..46307920e 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%19 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index ecd783b4f..0f2c06b03 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%123 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - + JSDate - - -JSDate + + +JSDate JSDate->JSBridgedClass - - + + - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass + + + + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6a96abd2c..790a23fea 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%47 @@ -74,7 +74,7 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -86,7 +86,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index dbc43073e..d93658ea4 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -25,7 +25,7 @@ @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%101 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -146,12 +146,12 @@

public convenience init(_ body: @escaping ([JSValue]) -> ())

-
+

- init(_:​) + init(_:​file:​line:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue)  
+
public init(_ body: @escaping ([JSValue]) -> JSValue, file: String = #fileID, line: UInt32 = #line)  
@@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index ee963c354..6701b9aae 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -69,46 +69,46 @@

- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 173875f32..6bd7b1f54 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%145 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index dfeb78d8e..0a6dd7e2f 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%31 @@ -68,42 +68,42 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 8c9f62cad..70ddedd12 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%97 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index cf2a21da9..c2885cc32 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 30c01778b..a0774ba45 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%151 @@ -82,115 +82,115 @@
- + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - - -Equatable - -Equatable + + +JSOneshotClosure + + +JSOneshotClosure + - - -JSObject->Equatable - - + + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - - - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSObject - - + + +JSClosure->JSObject + + - - -JSClosure - - -JSClosure + + +JSSymbol + + +JSSymbol - + -JSClosure->JSObject - - +JSSymbol->JSObject + + - + JSBigInt - - -JSBigInt + + +JSBigInt JSBigInt->JSObject - - + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index cac27f95b..61f51b962 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index fd4979326..4813cdd43 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -25,7 +25,7 @@ @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%67 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -122,12 +122,12 @@

Conforms To

Initializers

-
+

- init(_:​) + init(_:​file:​line:​)

-
public init(_ body: @escaping ([JSValue]) -> JSValue)  
+
public init(_ body: @escaping ([JSValue]) -> JSValue, file: String = #fileID, line: UInt32 = #line)  
@@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c219fcd8f..293cc7455 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%43 @@ -281,7 +281,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index dcf0b4cb1..b7a42a1da 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -78,69 +78,69 @@

- - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - + -JSString->ConstructibleFromJSValue +JSString->Equatable - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 26d039b76..20fecc6bd 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%39 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 6ceed88c8..54bb3466e 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 7cbb60056..9ca55dd91 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d598a6c5e..6bb329ecc 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 00ab4f45a..119729690 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%169 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 4bfd0acaa..91a302b00 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%11 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index a534677dd..dda25efd4 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%107 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 6285f0ced..d0392f487 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 2e0e8df6f..1afda47a8 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 893613622..86ffd22c3 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f81ea2776..2a85b04d1 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index ce87c84ac..79d117789 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 93fdc1ff3..f2d4b8aea 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%73 @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7637afe5d..abab0cb57 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index d86f001e3..eaafa661e 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 3704367d4..5670f6528 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ad6458ff9..662cd5696 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index fab19df9c..d56356d3f 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%25 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b81a5d701..4186a2c2f 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 46d72d65a..16b32d08c 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 6d2ac42cf..eb70da02a 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 948f7c102..09f7e5d0c 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 96f8f1b04..78ececd0c 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 4890f75de..02b09b718 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 4b99ee1f1..cb0d6451d 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index eb57d5ad4..06ea495f5 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 191f16b1f..75d72a483 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 6e99e28fc..5610093d9 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index db64aba27..7e2c3db13 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 187a819e8..67433365f 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 8f4433a15..de5a0d803 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From fe1dc2c5c87a52ce5735e0efebf7d97a32022b7c Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Thu, 19 May 2022 13:18:43 +0000 Subject: [PATCH 116/148] deploy: 2d7bc960eed438dce7355710ece43fa004bbb3ac --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 ++-- Int16/index.html | 16 +-- Int32/index.html | 16 +-- Int64/index.html | 2 +- Int8/index.html | 16 +-- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 72 ++++++------- JSBridgedType/index.html | 30 +++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 44 ++++---- JSDate/index.html | 36 +++---- JSError/index.html | 40 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 118 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 76 +++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 +++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 18 ++-- UInt16/index.html | 16 +-- UInt32/index.html | 16 +-- UInt64/index.html | 2 +- UInt8/index.html | 16 +-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 414 insertions(+), 414 deletions(-) diff --git a/Array/index.html b/Array/index.html index 38f222f20..623f2f2c1 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index fba28344e..2f68e68f0 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 3f40134c5..ac4ba9941 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 0bc72e93f..a867bbaf1 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%141 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 19e96ebc1..f38c6e49d 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%135 @@ -76,7 +76,7 @@ - + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 2fcb88412..85f1792cb 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 96497d80c..e8538cd93 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 6acf56242..65a47afc8 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index ecdcfaa24..4c18949a5 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index d23eed271..24ef49838 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index a14bec0c3..203c09386 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 8b07283d1..3059976bb 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index f47da9e32..95f69a638 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index eba33cc93..42475b582 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index f5f6feb72..2cc484190 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 3ece57f3c..54f4035e7 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%67 @@ -74,7 +74,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -89,7 +89,7 @@ - + JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6d169a267..5175d0d25 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 8975c5b59..3b8011a56 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%103 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index a62fff65b..b6fc1e475 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%147 @@ -87,13 +87,13 @@
- + JSBigInt->JSBigIntExtended - + JSBigIntExtended->JSBigInt @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 46307920e..eae3b1b05 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%31 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0f2c06b03..6c86dd5a7 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%107 @@ -76,38 +76,38 @@
- + JSBridgedClass->JSBridgedType - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - + -JSArray->JSBridgedClass +JSPromise->JSBridgedClass @@ -121,38 +121,38 @@ - + JSDate->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -280,7 +280,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 790a23fea..fe957f8b1 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%17 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d93658ea4..19259fe9a 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%169 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 6701b9aae..2228271bc 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%161 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 6bd7b1f54..3e3ca64c6 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%7 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 0a6dd7e2f..1efd8e7be 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%53 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 70ddedd12..59c347a35 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%13 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index c2885cc32..9f7668f98 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index a0774ba45..66e05a803 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%73 @@ -81,101 +81,101 @@
- + -Hashable +CustomStringConvertible -Hashable +CustomStringConvertible - + -JSObject->Hashable +JSObject->CustomStringConvertible - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - - -CustomStringConvertible - -CustomStringConvertible + + +Hashable + +Hashable - - -JSObject->CustomStringConvertible - - + + +JSObject->Hashable + + - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - - -JSFunction - - -JSFunction + + +JSOneshotClosure + + +JSOneshotClosure - - -JSFunction->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - - -JSSymbol - - -JSSymbol + + +JSFunction + + +JSFunction - + -JSSymbol->JSObject - - +JSFunction->JSObject + + @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 61f51b962..63ae8ea7f 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4813cdd43..a3a224c5f 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%25 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 293cc7455..7dc16f68f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -62,11 +62,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%3 @@ -281,7 +281,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index b7a42a1da..115e456bf 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%91 @@ -78,69 +78,69 @@
- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - +LosslessStringConvertible - - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 20fecc6bd..a85121458 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%121 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 54bb3466e..440a5f1e0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 9ca55dd91..d782feffc 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 6bb329ecc..020c13e95 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 119729690..660500817 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%61 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 91a302b00..fbaddae3f 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%125 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index dda25efd4..088a836e3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%37 @@ -67,75 +67,75 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral @@ -146,7 +146,7 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index d0392f487..cc524fecf 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 1afda47a8..3dde54bf9 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 86ffd22c3..ea1aea723 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 2a85b04d1..6aceaf6bd 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 79d117789..574690028 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index f2d4b8aea..bf1d51580 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%155 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index abab0cb57..04ea4552a 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index eaafa661e..483eb9a98 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 5670f6528..1559838fa 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 662cd5696..efbda5800 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index d56356d3f..7d7b4ba8e 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%129 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4186a2c2f..4bd24adb6 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 16b32d08c..8c7c671fb 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index eb70da02a..ea553ad06 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 09f7e5d0c..d3481db00 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 78ececd0c..18629317b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 02b09b718..0c716cca6 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index cb0d6451d..e32d64ecf 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 06ea495f5..888246bf0 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 75d72a483..df0ced4ad 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 5610093d9..9d67f8537 100644 --- a/index.html +++ b/index.html @@ -538,7 +538,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 7e2c3db13..fa8922f0f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 67433365f..569437e23 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index de5a0d803..bb4c6391d 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 71112aca712317ed60b64bd728f023262e139821 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Sun, 5 Jun 2022 14:58:57 +0000 Subject: [PATCH 117/148] deploy: f1ef51771550469c653f89060f8ad5a47b04ee55 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 34 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 103 +++++++++---------- JSBridgedType/index.html | 10 +- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 50 +++++----- JSDate/index.html | 6 +- JSError/index.html | 34 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 116 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 36 +++---- JSString/index.html | 70 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 70 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 9 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 402 insertions(+), 418 deletions(-) diff --git a/Array/index.html b/Array/index.html index 623f2f2c1..71477f5d5 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 2f68e68f0..045b08feb 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index ac4ba9941..e26a0daf7 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index a867bbaf1..1ff1d5867 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%83 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index f38c6e49d..8621642bf 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%141 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 85f1792cb..9f33700c8 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index e8538cd93..619a36c8a 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 65a47afc8..36c98dce6 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 4c18949a5..81df18874 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 24ef49838..01de02397 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 203c09386..4c4fbe1da 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 3059976bb..539b78a34 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 95f69a638..8616b1c1c 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 42475b582..86e5838ed 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 2cc484190..5081b0c0e 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 54f4035e7..8f2fbf62b 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%113 @@ -67,30 +67,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 5175d0d25..65d2f4f9a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3b8011a56..ed534c003 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%137 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index b6fc1e475..ed24110ee 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%21 @@ -72,7 +72,7 @@
- + JSBigInt->JSObject @@ -87,7 +87,7 @@ - + JSBigInt->JSBigIntExtended @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index eae3b1b05..b666b7b30 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%159 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 6c86dd5a7..628d1f596 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%39 @@ -67,62 +67,47 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - - - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -141,18 +126,33 @@ - + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + -JSArray - - -JSArray +JSPromise + + +JSPromise - + -JSArray->JSBridgedClass +JSPromise->JSBridgedClass @@ -190,12 +190,7 @@

Types Conforming to JSBridged​Class

exposes its properties in a type-safe way.

JSPromise
-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+

A wrapper around the JavaScript Promise class

JSTypedArray

A wrapper around all JavaScript TypedArray @@ -280,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fe957f8b1..457b0b9d0 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%105 @@ -74,7 +74,7 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 19259fe9a..8e980305b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%77 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 2228271bc..16fe8d071 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%151 @@ -69,16 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + @@ -90,26 +105,11 @@ - + JSOneshotClosure->JSClosureProtocol - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - - @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 3e3ca64c6..010dcf13b 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%3 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 1efd8e7be..6e85fd7c6 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -68,30 +68,30 @@

- - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 59c347a35..d7a341f2c 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%35 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9f7668f98..824e3de96 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 66e05a803..c0917ed82 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%119 @@ -82,70 +82,70 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - -JSObject->CustomStringConvertible - - - - - -Equatable - -Equatable - - -JSObject->Equatable - - +JSObject->CustomStringConvertible + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - - -JSSymbol - - -JSSymbol + + +Equatable + +Equatable + + + +JSObject->Equatable + + + + + +JSFunction + + +JSFunction - - -JSSymbol->JSObject - - + + +JSFunction->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -157,25 +157,25 @@ - + JSClosure->JSObject - - -JSFunction - - -JSFunction + + +JSSymbol + + +JSSymbol - - -JSFunction->JSObject - - + + +JSSymbol->JSObject + + @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 63ae8ea7f..4cf26123c 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index a3a224c5f..1c91e9fcb 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%29 @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 7dc16f68f..6a3ca5772 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -40,18 +40,7 @@

public final class JSPromise: JSBridgedClass  

-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

- -
-
-

This doesn't 100% match the JavaScript API, as then overload with two callbacks is not available. -It's impossible to unify success and failure types from both callbacks in a single returned promise -without type erasure. You should chain then and catch in those cases to avoid type erasure.

+

A wrapper around the JavaScript Promise class

@@ -62,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%61 @@ -141,8 +130,13 @@

public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> Void) -> Void)  

-

Creates a new JSPromise instance from a given resolver closure. resolver takes -two closure that your code should call to either resolve or reject this JSPromise instance.

+

Creates a new JSPromise instance from a given resolver closure. +The closure is passed a completion handler. Passing a successful +Result to the completion handler will cause the promise to resolve +with the corresponding value; passing a failure Result will cause the +promise to reject with the corresponding value. +Calling the completion handler more than once will have no effect +(per the JavaScript specification).

@@ -225,7 +219,7 @@

public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise

-

Schedules the success closure to be invoked on sucessful completion of self.

+

Schedules the success closure to be invoked on successful completion of self.

@@ -241,7 +235,7 @@

) -> JSPromise

-

Schedules the success closure to be invoked on sucessful completion of self.

+

Schedules the success closure to be invoked on successful completion of self.

@@ -267,8 +261,8 @@

public func finally(successOrFailure: @escaping () -> Void) -> JSPromise

-

Schedules the failure closure to be invoked on either successful or rejected completion of -self.

+

Schedules the failure closure to be invoked on either successful or rejected +completion of self.

@@ -281,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 115e456bf..4a5c87a3b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%9 @@ -78,57 +78,57 @@ - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - + -JSString->ConvertibleToJSValue +JSString->ExpressibleByStringLiteral @@ -139,7 +139,7 @@ Equatable - + JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index a85121458..4a034d042 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%171 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 440a5f1e0..8ad3cbf18 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index d782feffc..15ebc84eb 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 020c13e95..ef03c1798 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 660500817..d22484675 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%165 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index fbaddae3f..76b18e0fd 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%147 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 088a836e3..65fbff780 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%89 @@ -67,39 +67,39 @@
- + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral @@ -110,7 +110,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -122,32 +122,32 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index cc524fecf..4daffe5eb 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3dde54bf9..068413c59 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ea1aea723..10eec18e5 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6aceaf6bd..ab9690197 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 574690028..eef077b35 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index bf1d51580..e1cb0a66b 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%65 @@ -63,27 +63,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 04ea4552a..bcd8ff521 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 483eb9a98..355aeac25 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 1559838fa..50ae85863 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index efbda5800..647e0c86e 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7d7b4ba8e..e988d9aef 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%71 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 4bd24adb6..68f53e78f 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 8c7c671fb..9213f3afe 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index ea553ad06..d8a918e10 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index d3481db00..19e4d3a4d 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 18629317b..b26625435 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 0c716cca6..ba7abb659 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index e32d64ecf..f9ade7582 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 888246bf0..61d2c5e3a 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index df0ced4ad..d6720de35 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 9d67f8537..f083405ef 100644 --- a/index.html +++ b/index.html @@ -92,12 +92,7 @@

Classes

-

A wrapper around the JavaScript Promise class -that exposes its functions in a type-safe and Swifty way. The JSPromise API is generic over both -Success and Failure types, which improves compatibility with other statically-typed APIs such -as Combine. If you don't know the exact type of your Success value, you should use JSValue, e.g. -JSPromise<JSValue, JSError>. In the rare case, where you can't guarantee that the error thrown -is of actual JavaScript Error type, you should use JSPromise<JSValue, JSValue>.

+

A wrapper around the JavaScript Promise class

@@ -538,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index fa8922f0f..c38ca92e3 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 569437e23..ff95ce597 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index bb4c6391d..a48ce6202 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From fceb1171966ad3c0c84debfbb08b4aa2dabff27a Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 19 Jul 2022 09:09:20 +0000 Subject: [PATCH 118/148] deploy: 901de662207983d0c46d6b60d5b32fe50607275b --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++--- ConvertibleToJSValue/index.html | 38 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 +-- Int16/index.html | 16 +-- Int32/index.html | 16 +-- Int64/index.html | 2 +- Int8/index.html | 16 +-- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 ++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 96 +++++++------- JSBridgedType/index.html | 38 +++--- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 32 ++--- JSDate/index.html | 38 +++--- JSError/index.html | 48 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 146 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++--- JSPromise/index.html | 6 +- JSString/index.html | 66 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 68 +++++----- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 18 +-- UInt16/index.html | 16 +-- UInt32/index.html | 16 +-- UInt64/index.html | 2 +- UInt8/index.html | 16 +-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 521 insertions(+), 521 deletions(-) diff --git a/Array/index.html b/Array/index.html index 71477f5d5..2a66a227f 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 045b08feb..5629192a3 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index e26a0daf7..60f254bcf 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 1ff1d5867..d1a9744de 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%77 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 8621642bf..179944bcb 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%95 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 9f33700c8..05a2f7382 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 619a36c8a..b11ddd9db 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 36c98dce6..421975b4a 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 81df18874..d59cea5d6 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 01de02397..140fd0b87 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 4c4fbe1da..30f905f2a 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 539b78a34..a687ae930 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 8616b1c1c..29be7f311 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 86e5838ed..558cb9513 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 5081b0c0e..23fe9fad6 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 8f2fbf62b..b7fea106e 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%43 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 65d2f4f9a..4fbc49817 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ed534c003..f2d9cf817 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%73 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index ed24110ee..7d9bbcc0a 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%15 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended - + JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + - + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index b666b7b30..c1d903b25 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%89 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 628d1f596..cbd2591f4 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%29 @@ -67,35 +67,50 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + JSArray @@ -106,56 +121,41 @@ - + JSArray->JSBridgedClass - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - - @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 457b0b9d0..b161bbc47 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%7 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8e980305b..6159e96a7 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%83 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 16fe8d071..738046fb4 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%65 @@ -69,16 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + @@ -90,25 +90,25 @@ - + JSClosure->JSClosureProtocol - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 010dcf13b..4625871c3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%23 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 6e85fd7c6..68aa3b5d2 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%167 @@ -68,42 +68,42 @@
+ + +Error + +Error + + + +JSError->Error + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible - - - - - -Error - -Error - - - -JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index d7a341f2c..b512ce58e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%159 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 824e3de96..7ce1c1eff 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index c0917ed82..b906d6b43 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%113 @@ -81,71 +81,71 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - - -Equatable - -Equatable + + +CustomStringConvertible + +CustomStringConvertible - - -JSObject->Equatable - - + + +JSObject->CustomStringConvertible + + - - -JSFunction - - -JSFunction + + +JSSymbol + + +JSSymbol - - -JSFunction->JSObject - - + + +JSSymbol->JSObject + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSBigInt + + +JSBigInt - + -JSOneshotClosure->JSObject - - +JSBigInt->JSObject + + @@ -157,40 +157,40 @@ - + JSClosure->JSObject - - -JSSymbol - - -JSSymbol + + +JSOneshotClosure + + +JSOneshotClosure - - -JSSymbol->JSObject - - + + +JSOneshotClosure->JSObject + + - - -JSBigInt - - -JSBigInt + + +JSFunction + + +JSFunction - - -JSBigInt->JSObject - - + + +JSFunction->JSObject + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4cf26123c..44882bb0a 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1c91e9fcb..6ae4b8449 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%143 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 6a3ca5772..45abeba36 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%163 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 4a5c87a3b..cd4578bb5 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%101 @@ -78,18 +78,15 @@
- - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -103,44 +100,47 @@
- + JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 4a034d042..29f8f9d80 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%3 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 8ad3cbf18..131df931d 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 15ebc84eb..e8680fc02 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index ef03c1798..33a48c521 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d22484675..29bb4a469 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%131 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 76b18e0fd..46caa3159 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%155 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 65fbff780..5690b6747 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%49 @@ -67,27 +67,27 @@
- + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible @@ -110,44 +110,44 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 4daffe5eb..4d35a320b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 068413c59..63c4de237 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 10eec18e5..a71d6cbec 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ab9690197..338cc4ddc 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index eef077b35..d6e4f1753 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index e1cb0a66b..80ef23625 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%149 @@ -70,7 +70,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -82,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index bcd8ff521..7df361897 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 355aeac25..0865cbf92 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 50ae85863..53999f2d2 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 647e0c86e..3d38d5e15 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e988d9aef..28e447c53 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%137 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 68f53e78f..b987e1d0b 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 9213f3afe..a92d367f1 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index d8a918e10..a21caa708 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 19e4d3a4d..6cac385a7 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index b26625435..83f38321a 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index ba7abb659..c651739d6 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index f9ade7582..ae7d90e94 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 61d2c5e3a..a51f5f5ec 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index d6720de35..49adbf7f8 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index f083405ef..30e27bb27 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index c38ca92e3..dd620a99d 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index ff95ce597..84fb8e48c 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index a48ce6202..2221bdab5 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 624e0a8230fe1a282ddb2ae4d1c3f88f2590b58e Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 19 Jul 2022 09:47:53 +0000 Subject: [PATCH 119/148] deploy: 93f2dd568191c6f26d406386d3cd94ea69e72191 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 34 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 58 +++++------ JSBridgedType/index.html | 50 +++++----- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 10 +- JSError/index.html | 30 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 114 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 64 ++++++------ JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 405 insertions(+), 405 deletions(-) diff --git a/Array/index.html b/Array/index.html index 2a66a227f..95344619f 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 5629192a3..2ef76b555 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 60f254bcf..80129a640 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index d1a9744de..88d0e9b51 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%31 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 179944bcb..32fe6dba7 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%151 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 05a2f7382..b1ffcf569 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index b11ddd9db..64157b173 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 421975b4a..fa7cbbb75 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index d59cea5d6..588223403 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 140fd0b87..1a04a281a 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 30f905f2a..5bbd2d739 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index a687ae930..496999f5c 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 29be7f311..aa4dcb08e 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 558cb9513..b22554aab 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 23fe9fad6..054e89c2a 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b7fea106e..52010cd6b 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%37 @@ -67,30 +67,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 4fbc49817..53490ad02 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index f2d9cf817..05cd7eb61 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%121 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 7d9bbcc0a..bd93c41e5 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%107 @@ -87,13 +87,13 @@
- + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index c1d903b25..386818c8c 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%19 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index cbd2591f4..d31dd99d5 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%137 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + @@ -91,23 +91,23 @@ - + JSError->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass @@ -136,25 +136,25 @@
- + JSPromise->JSBridgedClass - - -JSDate - - -JSDate + + +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index b161bbc47..81984a0a4 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%157 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6159e96a7..b88c34f90 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%125 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 738046fb4..210a5f3e7 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%99 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 4625871c3..0a7bd43db 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%131 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 68aa3b5d2..d0be05b0c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%43 @@ -68,15 +68,15 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -90,20 +90,20 @@
- + JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index b512ce58e..47a9f6844 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%3 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7ce1c1eff..e3a3acd00 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index b906d6b43..90bf51713 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%61 @@ -81,42 +81,57 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + JSSymbol @@ -127,38 +142,38 @@ - + JSSymbol->JSObject - + -JSBigInt - - -JSBigInt +JSClosure + + +JSClosure - + -JSBigInt->JSObject +JSClosure->JSObject - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - - -JSClosure->JSObject + + +JSBigInt->JSObject @@ -172,26 +187,11 @@ - + JSOneshotClosure->JSObject - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 44882bb0a..152601d7f 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 6ae4b8449..77fd641e4 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%51 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 45abeba36..c798994ef 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%171 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index cd4578bb5..4763fdb08 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%7 @@ -78,15 +78,15 @@
- + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable @@ -100,47 +100,47 @@
- + JSString->ConstructibleFromJSValue - - -Equatable - -Equatable - - - -JSString->Equatable - - - - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible JSString->LosslessStringConvertible - - + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 29f8f9d80..2d2139283 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%79 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 131df931d..35036698c 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index e8680fc02..92b6e2767 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 33a48c521..969911d8e 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 29bb4a469..e21c0c7b8 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%165 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 46caa3159..0e91f6e38 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%57 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 5690b6747..b1453eccf 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%83 @@ -67,87 +67,87 @@
- + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - + -JSValue->Equatable +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSValue->CustomStringConvertible + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 4d35a320b..e9653df4c 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 63c4de237..7712e5395 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a71d6cbec..0aa9e7788 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 338cc4ddc..b7bf0765d 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index d6e4f1753..19eadddab 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 80ef23625..40a8568a3 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%25 @@ -70,7 +70,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -82,7 +82,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7df361897..7226d99b8 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 0865cbf92..30c9f3041 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 53999f2d2..e6a800f89 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 3d38d5e15..ee20f7009 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 28e447c53..1e4dfbf6a 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%115 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b987e1d0b..b1e9e2672 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index a92d367f1..7e6962a47 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index a21caa708..87a27d8f8 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 6cac385a7..35d15c9d3 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 83f38321a..1ead26723 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index c651739d6..711bf133c 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index ae7d90e94..7b4a67967 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index a51f5f5ec..81a9d72f5 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 49adbf7f8..07e5c7a82 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 30e27bb27..aa9d808eb 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index dd620a99d..427b44190 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 84fb8e48c..b2e146a61 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 2221bdab5..99f7795c2 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From ffd53313d199b1ca16759edfb06b762f0556205a Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 31 Jul 2022 15:30:28 +0000 Subject: [PATCH 120/148] deploy: 8478665fcb3a21dfb202055770e871a977d96ab7 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 86 +++++++------- JSBridgedType/index.html | 28 ++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 52 ++++----- JSDate/index.html | 10 +- JSError/index.html | 30 ++--- JSFunction/index.html | 2 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 134 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++--- JSPromise/index.html | 6 +- JSString/index.html | 60 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 90 +++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 387 insertions(+), 387 deletions(-) diff --git a/Array/index.html b/Array/index.html index 95344619f..99ba16e03 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 2ef76b555..e0f9eaeb8 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 80129a640..399c65bdb 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 88d0e9b51..faec60af2 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%147 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 32fe6dba7..085206a5c 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%7 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b1ffcf569..e81bcb584 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 64157b173..f620124a8 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index fa7cbbb75..8bbed9ef1 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 588223403..c07509a77 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 1a04a281a..c613328e4 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 5bbd2d739..a014946dc 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 496999f5c..c5368dc1a 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index aa4dcb08e..957db4e44 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index b22554aab..35f2054e4 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 054e89c2a..f85b3d577 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 52010cd6b..2aade72b8 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%141 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 53490ad02..a09f7511f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 05cd7eb61..3b0ec3e61 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%13 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index bd93c41e5..040db9e43 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%55 @@ -72,7 +72,7 @@ - + JSBigInt->JSBigIntExtended @@ -87,7 +87,7 @@ - + JSBigInt->JSObject @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 386818c8c..545a08922 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%169 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d31dd99d5..aeebcdece 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%127 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + @@ -91,70 +91,70 @@ - + JSError->JSBridgedClass - + -JSDate - +JSPromise + -JSDate +JSPromise - - -JSDate->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - + -JSArray->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - - -JSTypedArray - - -JSTypedArray + + +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass - - + + +JSDate->JSBridgedClass + + @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 81984a0a4..d9fd2c1bb 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%21 @@ -80,31 +80,31 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b88c34f90..6185d4f7d 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%41 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 210a5f3e7..ea9d73ae8 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%47 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSClosure - - -JSClosure + + +JSOneshotClosure + + +JSOneshotClosure - + -JSClosure->JSClosureProtocol - - +JSOneshotClosure->JSClosureProtocol + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 0a7bd43db..13bbb5ecf 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%153 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index d0be05b0c..aba704dd8 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%85 @@ -68,15 +68,15 @@
- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -90,20 +90,20 @@
- + JSError->JSBridgedClass - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 47a9f6844..7899dde4c 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e3a3acd00..8ecc2bd34 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 90bf51713..5e1f383fa 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%109 @@ -81,69 +81,54 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +Hashable + +Hashable - + -JSObject->CustomStringConvertible - - +JSObject->Hashable + + - + Equatable - -Equatable + +Equatable JSObject->Equatable - - - - - -Hashable - -Hashable - - - -JSObject->Hashable - - - - - -JSFunction - - -JSFunction - + + + + +CustomStringConvertible + +CustomStringConvertible - - -JSFunction->JSObject - - + + +JSObject->CustomStringConvertible + + - + -JSSymbol - - -JSSymbol +JSBigInt + + +JSBigInt - - -JSSymbol->JSObject + + +JSBigInt->JSObject @@ -162,35 +147,50 @@ - - -JSBigInt - - -JSBigInt + + +JSFunction + + +JSFunction - + -JSBigInt->JSObject - - +JSFunction->JSObject + + + + + +JSSymbol + + +JSSymbol + + + + + +JSSymbol->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 152601d7f..177899a09 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 77fd641e4..f87493660 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%35 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c798994ef..11a4a6282 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%17 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 4763fdb08..0d1a25f39 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%67 @@ -78,42 +78,39 @@
- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - + -JSString->ConstructibleFromJSValue +JSString->Equatable - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral @@ -127,20 +124,23 @@
- + JSString->ConvertibleToJSValue - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 2d2139283..ddcdbd0d6 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%63 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 35036698c..d19bc1d97 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 92b6e2767..750f220fe 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 969911d8e..e7bd41088 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index e21c0c7b8..53878f3a1 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%29 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 0e91f6e38..0ee4f11b2 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%165 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b1453eccf..2b98c4a8c 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%93 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index e9653df4c..b4aa33c1e 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7712e5395..0a8a21002 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0aa9e7788..c49aee0e9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index b7bf0765d..68c1fce28 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 19eadddab..f2f8a2b2f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 40a8568a3..8e6ff10e8 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%159 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 7226d99b8..988270746 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 30c9f3041..768476bd3 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index e6a800f89..6f7dca4e8 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ee20f7009..e81eac9c3 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 1e4dfbf6a..ee4bd3c85 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%79 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b1e9e2672..96594ba3b 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 7e6962a47..2fbbccdbd 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 87a27d8f8..9daa8c49b 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 35d15c9d3..1a611cc23 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 1ead26723..991b478bf 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 711bf133c..46168bf22 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 7b4a67967..48d463940 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 81a9d72f5..ce037bd76 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 07e5c7a82..0981592d4 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index aa9d808eb..b8c8d0f59 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 427b44190..76750c0b0 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index b2e146a61..84ff9e2e4 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 99f7795c2..847ccb8a0 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 757d5dede955f1928980be07c87f1a4bdd809038 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 12 Aug 2022 13:53:40 +0000 Subject: [PATCH 121/148] deploy: 36c672b18a5bcde6f4c52c3ebf1b7f4627382de7 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 ++++++------- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 104 +++++++++++----------- JSBridgedType/index.html | 46 +++++----- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 44 ++++----- JSDate/index.html | 38 ++++---- JSError/index.html | 30 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 96 ++++++++++---------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 86 +++++++++--------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 455 insertions(+), 455 deletions(-) diff --git a/Array/index.html b/Array/index.html index 99ba16e03..f7d2c3b53 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index e0f9eaeb8..fe6cbd9eb 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 399c65bdb..6548152ba 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index faec60af2..626504260 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%77 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 085206a5c..672941806 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%3 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index e81bcb584..369cfa299 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index f620124a8..c407f6900 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 8bbed9ef1..126b971b3 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index c07509a77..9d4f4cc43 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index c613328e4..5382f4479 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index a014946dc..b72c8a83a 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index c5368dc1a..c4be1fe1e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 957db4e44..92012562f 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 35f2054e4..3d09f1d48 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index f85b3d577..b0b57055a 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 2aade72b8..f55c3451b 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%25 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index a09f7511f..a2c8eaf9d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3b0ec3e61..3e85e9b69 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%65 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 040db9e43..f15f8a398 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%111 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + - + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 545a08922..ec0aff1e9 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -72,13 +72,13 @@

- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index aeebcdece..fcb2ca467 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%83 @@ -67,94 +67,94 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass - + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + + + JSTypedArray - - -JSTypedArray + + +JSTypedArray JSTypedArray->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - + + @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d9fd2c1bb..a671f525c 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%69 @@ -67,18 +67,6 @@
- - -JSValueCompatible - -JSValueCompatible - - - -JSBridgedType->JSValueCompatible - - - CustomStringConvertible @@ -86,25 +74,37 @@ CustomStringConvertible - + JSBridgedType->CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible + + + +JSBridgedType->JSValueCompatible + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6185d4f7d..8806cd5dc 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%141 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index ea9d73ae8..5ec480c92 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%119 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 13bbb5ecf..84c7f3adf 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%31 @@ -72,30 +72,30 @@
+ + +Comparable + +Comparable + + + +JSDate->Comparable + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index aba704dd8..48c4eb306 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%103 @@ -68,15 +68,15 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -95,15 +95,15 @@ - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 7899dde4c..fbcd9206b 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%165 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 8ecc2bd34..a9ba484fc 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 5e1f383fa..8ae8c43c7 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%147 @@ -88,92 +88,92 @@ Hashable
- + JSObject->Hashable - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - - -JSBigInt - - -JSBigInt + + +JSSymbol + + +JSSymbol - - -JSBigInt->JSObject - - + + +JSSymbol->JSObject + + - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - - -JSClosure->JSObject + + +JSBigInt->JSObject - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 177899a09..a45c46bbc 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index f87493660..0742d56db 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%41 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 11a4a6282..5558f5c43 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%37 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0d1a25f39..bf39d9666 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%47 @@ -78,69 +78,69 @@
- - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - + Equatable - -Equatable + +Equatable JSString->Equatable - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue + + + + + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index ddcdbd0d6..bd839ac50 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%137 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index d19bc1d97..42fc46f5c 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 750f220fe..484515e52 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index e7bd41088..78962cc63 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 53878f3a1..a740c9fc8 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%59 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 0ee4f11b2..afa7868e8 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%133 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 2b98c4a8c..32469d13d 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%9 @@ -67,15 +67,15 @@
- + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral @@ -86,68 +86,68 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - + -JSValue->JSValueCompatible +JSValue->Equatable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index b4aa33c1e..1dfbd7183 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 0a8a21002..ec5078038 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index c49aee0e9..fdbd94c2a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 68c1fce28..676081f6d 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index f2f8a2b2f..dcb37f578 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 8e6ff10e8..438247bd1 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%97 @@ -70,7 +70,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -82,7 +82,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 988270746..663cbaf14 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 768476bd3..c87eae7a2 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 6f7dca4e8..db9b2df91 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index e81eac9c3..d8bba8485 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ee4bd3c85..b6b487d07 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%127 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 96594ba3b..74358d7eb 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 2fbbccdbd..48c7fa39a 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9daa8c49b..ee58df3ed 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 1a611cc23..bd722d745 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 991b478bf..e371e1d12 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 46168bf22..134949b05 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 48d463940..e603f4113 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index ce037bd76..8dd50e989 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 0981592d4..2801a40aa 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index b8c8d0f59..665335e48 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 76750c0b0..0644358f7 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 84ff9e2e4..fcf5ba04e 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 847ccb8a0..c930edf03 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 16f11f2929223f9919f2854b9db5f915b12cb688 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 14 Aug 2022 10:06:24 +0000 Subject: [PATCH 122/148] deploy: 756c6ca2b4748ae1001bf25b60a9ba28227b9571 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 ++--- ConvertibleToJSValue/index.html | 34 ++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 96 +++++++-------- JSBridgedType/index.html | 12 +- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 32 ++--- JSDate/index.html | 6 +- JSError/index.html | 38 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 144 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 12 +- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 391 insertions(+), 391 deletions(-) diff --git a/Array/index.html b/Array/index.html index f7d2c3b53..8b3175864 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index fe6cbd9eb..ba49c05db 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 6548152ba..64a0bf4f5 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 626504260..38f635772 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%117 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 672941806..7aa4ac50b 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%147 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 369cfa299..2c0dfce89 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index c407f6900..a73511b9e 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 126b971b3..3d815405f 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 9d4f4cc43..0ccd2a057 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 5382f4479..18f17a048 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index b72c8a83a..5e6fc509c 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index c4be1fe1e..fcb9f23b9 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 92012562f..cbe7fcdad 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 3d09f1d48..4282795ef 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index b0b57055a..0d6a6dcc6 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f55c3451b..57561cea6 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%163 @@ -67,30 +67,30 @@ - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index a2c8eaf9d..fe6505898 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3e85e9b69..459161b93 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%153 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index f15f8a398..f666ebc2a 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%29 @@ -87,13 +87,13 @@
- + JSBigInt->JSBigIntExtended - + JSBigIntExtended->JSBigInt @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index ec0aff1e9..2aac73141 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%137 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index fcb2ca467..64d1e43fe 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%123 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - + -JSDate->JSBridgedClass +JSArray->JSBridgedClass - + JSError - - -JSError + + +JSError - + JSError->JSBridgedClass - - + + - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index a671f525c..70a900496 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%21 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -86,7 +86,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8806cd5dc..2fdf25073 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%93 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 5ec480c92..aacaf5c83 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%13 @@ -69,16 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + @@ -96,19 +96,19 @@ - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 84c7f3adf..c6ff4e1af 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%75 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 48c4eb306..9175917cf 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%81 @@ -80,30 +80,30 @@
+ + +Error + +Error + + + +JSError->Error + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -Error - -Error - - - -JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index fbcd9206b..ab3f33542 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%71 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a9ba484fc..312021b18 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 8ae8c43c7..4b44e89a4 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%99 @@ -81,114 +81,114 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -CustomStringConvertible - -CustomStringConvertible + + +JSBigInt + + +JSBigInt + - - -JSObject->CustomStringConvertible - - - + + +JSBigInt->JSObject + + + + -JSSymbol - +JSOneshotClosure + -JSSymbol +JSOneshotClosure - - -JSSymbol->JSObject + + +JSOneshotClosure->JSObject - - -JSBigInt - - -JSBigInt - - - - - -JSBigInt->JSObject - - - - + -JSFunction - +JSClosure + -JSFunction +JSClosure - - -JSFunction->JSObject + + +JSClosure->JSObject - - -JSClosure - - -JSClosure + + +JSFunction + + +JSFunction - - -JSClosure->JSObject - - + + +JSFunction->JSObject + + - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index a45c46bbc..6ee9ba010 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 0742d56db..b1c8cdf98 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%49 @@ -76,7 +76,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -91,7 +91,7 @@ - + JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 5558f5c43..4eb72e42e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%89 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index bf39d9666..2685bd0f0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%37 @@ -100,7 +100,7 @@
- + JSString->ConvertibleToJSValue @@ -115,7 +115,7 @@ - + JSString->ConstructibleFromJSValue @@ -139,7 +139,7 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index bd839ac50..af10fd26d 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%9 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 42fc46f5c..ccf30d1a2 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 484515e52..69244aa46 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 78962cc63..5926f8bc5 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index a740c9fc8..18efde7d3 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%169 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index afa7868e8..1a4788dcb 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%143 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 32469d13d..d9c3e4cc1 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%55 @@ -74,80 +74,80 @@ ExpressibleByStringLiteral
- + JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - + -JSValue->Equatable +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 1dfbd7183..8bb5eb3b4 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ec5078038..e63def4b0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index fdbd94c2a..3caf5f114 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 676081f6d..366009879 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index dcb37f578..7d9b4d9ea 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 438247bd1..f6d8b39dd 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%3 @@ -70,7 +70,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -82,7 +82,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 663cbaf14..83c90f6c1 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index c87eae7a2..cb66ae175 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index db9b2df91..5105336fe 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index d8bba8485..bee488b0b 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b6b487d07..000eee76f 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%157 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 74358d7eb..6bdaa77d0 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 48c7fa39a..cff8a9334 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index ee58df3ed..732b6df01 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index bd722d745..d0049d99b 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index e371e1d12..fba2fe302 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 134949b05..5acc431a5 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index e603f4113..116aa7d70 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 8dd50e989..fe9c3f147 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 2801a40aa..4b9c0e912 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 665335e48..cae3c65c0 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 0644358f7..bdd20bbfe 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index fcf5ba04e..c970e6bda 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index c930edf03..b7510a9a8 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 6bdc7af0b952c034eedcb0be2e8d770d784ec8f8 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Sun, 14 Aug 2022 10:16:38 +0000 Subject: [PATCH 123/148] deploy: 4c61f130c28a2dbe84864e82d478a022c538b1be --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 +++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 56 +++++----- JSBridgedType/index.html | 34 +++--- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 12 +-- JSDate/index.html | 38 +++---- JSError/index.html | 42 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 126 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 52 ++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 86 +++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 395 insertions(+), 395 deletions(-) diff --git a/Array/index.html b/Array/index.html index 8b3175864..bf14b5ac3 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index ba49c05db..dd9b39568 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 64a0bf4f5..8aeee55d4 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 38f635772..401d75283 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%63 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 7aa4ac50b..4ecf42bbb 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%95 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 2c0dfce89..a2f2b2374 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index a73511b9e..9683d0834 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 3d815405f..83eb9bf1b 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 0ccd2a057..9a71fe237 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 18f17a048..ebb426053 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 5e6fc509c..e530fd0fc 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index fcb9f23b9..05d6c2736 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index cbe7fcdad..b04df2fdd 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 4282795ef..724546bb0 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 0d6a6dcc6..394fd18d3 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 57561cea6..4cf1b0aad 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%69 @@ -67,30 +67,30 @@ + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index fe6505898..461fa269d 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 459161b93..7ee5e8db8 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%31 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index f666ebc2a..ac81b8d85 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -47,56 +47,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%81 JSBigInt - -JSBigInt + +JSBigInt + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + + - + JSObject - - -JSObject + + +JSObject JSBigInt->JSObject - - - - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - + + - + JSBigIntExtended->JSBigInt - - + + @@ -208,7 +208,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 2aac73141..b182d2dd1 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%75 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 64d1e43fe..a2c288d1e 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%161 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + @@ -91,7 +91,7 @@ - + JSTypedArray->JSBridgedClass @@ -106,11 +106,26 @@ - + JSArray->JSBridgedClass + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + JSError @@ -121,7 +136,7 @@ - + JSError->JSBridgedClass @@ -141,21 +156,6 @@ - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 70a900496..1b573d416 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%9 @@ -68,16 +68,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -86,25 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 2fdf25073..eba6c5880 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%89 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index aacaf5c83..5cdde1960 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%39 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index c6ff4e1af..243648285 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%151 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 9175917cf..c1ed09344 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%125 @@ -68,15 +68,18 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -87,23 +90,20 @@ Error - + JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ab3f33542..c47ce3b9e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%35 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 312021b18..dec8733e9 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 4b44e89a4..e882cdc92 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%107 @@ -81,18 +81,6 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - Hashable @@ -100,38 +88,65 @@ Hashable - + JSObject->Hashable + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSBigInt - - -JSBigInt +JSClosure + + +JSClosure - - -JSBigInt->JSObject + + +JSClosure->JSObject + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + JSOneshotClosure @@ -142,55 +157,40 @@ - + JSOneshotClosure->JSObject - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - - + -JSFunction - +JSSymbol + -JSFunction +JSSymbol - - -JSFunction->JSObject + + +JSSymbol->JSObject - - -JSSymbol - - -JSSymbol + + +JSBigInt + + +JSBigInt - + -JSSymbol->JSObject - - +JSBigInt->JSObject + + @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 6ee9ba010..4d25143e3 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index b1c8cdf98..58ff70c47 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%21 @@ -66,33 +66,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4eb72e42e..52abf1077 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%17 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 2685bd0f0..a27e0b66e 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%139 @@ -85,7 +85,7 @@ Equatable
- + JSString->Equatable @@ -100,47 +100,47 @@ - + JSString->ConvertibleToJSValue + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - + -JSString->ExpressibleByStringLiteral +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index af10fd26d..f1d4c4259 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%27 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index ccf30d1a2..072efcbda 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 69244aa46..4e7608438 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 5926f8bc5..b01145075 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 18efde7d3..60bd89f40 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%101 @@ -74,7 +74,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -89,7 +89,7 @@ - + JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 1a4788dcb..83c8afb12 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%157 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index d9c3e4cc1..bbecc345f 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%47 @@ -67,87 +67,87 @@
- + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByNilLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 8bb5eb3b4..a745640e1 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index e63def4b0..eaa7233f5 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 3caf5f114..4f4eac88f 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 366009879..c23eac5e1 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 7d9b4d9ea..aa486e3fb 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index f6d8b39dd..e7e7be745 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -63,27 +63,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 83c90f6c1..1d67f94e0 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index cb66ae175..44b6ba315 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 5105336fe..b49e14fac 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index bee488b0b..478dee831 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 000eee76f..976d442ab 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%133 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 6bdaa77d0..556876228 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index cff8a9334..8cb827d5a 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 732b6df01..43e500ca3 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index d0049d99b..d4e5b391b 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index fba2fe302..5dadd5fc4 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 5acc431a5..838898976 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 116aa7d70..6f595d7d4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index fe9c3f147..96f334eb8 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 4b9c0e912..0b260e19e 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index cae3c65c0..e21cce20d 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index bdd20bbfe..7773a9664 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index c970e6bda..7a1212cf7 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index b7510a9a8..55f01c060 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 50ca68741bb80a7ecb45eaf0ce2879026804bbf5 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 14 Aug 2022 12:34:15 +0000 Subject: [PATCH 124/148] deploy: 9b865b21b0be700cbb641e51a5dde1dc81efcd56 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 38 +++++-- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 74 ++++++------- JSBridgedType/index.html | 34 +++--- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 54 +++++----- JSDate/index.html | 6 +- JSError/index.html | 46 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 120 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 86 ++++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 90 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 444 insertions(+), 418 deletions(-) diff --git a/Array/index.html b/Array/index.html index bf14b5ac3..7256c750e 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index dd9b39568..2ad9ff0a7 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 8aeee55d4..f3ef5676f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 401d75283..2deb07847 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%3 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 4ecf42bbb..ce993f30c 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%23 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index a2f2b2374..20fafdcf4 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 9683d0834..bc8acbf18 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 83eb9bf1b..8d16ac4fd 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 9a71fe237..ee21f8da0 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ebb426053..316537bc7 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e530fd0fc..7f4438072 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 05d6c2736..16538c87b 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index b04df2fdd..64ac8b470 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 724546bb0..a892d92b5 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 394fd18d3..31d1f7fec 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 4cf1b0aad..9a41ed0ce 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%17 @@ -271,7 +271,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 461fa269d..9d2d79246 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7ee5e8db8..ba422a9a4 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%65 @@ -112,7 +112,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index ac81b8d85..ef296ba77 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -25,7 +25,7 @@ @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%9 @@ -87,13 +87,13 @@
- + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -149,6 +149,32 @@

@_spi(JSObject_id)
     override public init(id: JavaScriptObjectRef)  
+
+

+
+

+ init(_slow​Bridge:​) +

+
+
public init(_slowBridge value: Int64)  
+
+
+

Instantiate a new JSBigInt with given Int64 value in a slow path +This doesn't require JS-BigInt-integration feature.

+ +
+
+
+

+ init(_slow​Bridge:​) +

+
+
public init(_slowBridge value: UInt64)  
+
+
+

Instantiate a new JSBigInt with given UInt64 value in a slow path +This doesn't require JS-BigInt-integration feature.

+
@@ -208,7 +234,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index b182d2dd1..c8b265cb9 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%53 @@ -144,7 +144,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index a2c288d1e..e5fc3b3df 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%33 @@ -76,38 +76,38 @@ - + JSBridgedClass->JSBridgedType - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass @@ -121,38 +121,38 @@ - + JSDate->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - - -JSPromise->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 1b573d416..d9574cc9a 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%157 @@ -74,37 +74,37 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index eba6c5880..e65565fc5 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%141 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 5cdde1960..bfac79da8 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%75 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 243648285..461cff625 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%147 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index c1ed09344..6fb8d1b88 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%103 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c47ce3b9e..7065abbf6 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%29 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index dec8733e9..5b99b4eb1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index e882cdc92..630421150 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%123 @@ -82,71 +82,56 @@
- + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - JSOneshotClosure @@ -157,25 +142,40 @@ - + JSOneshotClosure->JSObject - - -JSSymbol - - -JSSymbol + + +JSFunction + + +JSFunction - - -JSSymbol->JSObject - - + + +JSFunction->JSObject + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -431,7 +431,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 4d25143e3..3b9dc6aca 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 58ff70c47..bc1fe8a16 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%165 @@ -66,33 +66,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -156,7 +156,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 52abf1077..4f692824e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%83 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index a27e0b66e..a9b197887 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%111 @@ -78,69 +78,69 @@
- - -Equatable - -Equatable - - - -JSString->Equatable - - - - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue - - + + - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral + + +LosslessStringConvertible + +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral - - + + +JSString->LosslessStringConvertible + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue + + + + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index f1d4c4259..3b3e4182b 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%171 @@ -291,7 +291,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 072efcbda..015ab6ebd 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 4e7608438..967489ac8 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b01145075..a3a4e9d3c 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 60bd89f40..881179e9f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%47 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 83c8afb12..bba37c790 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -47,11 +47,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%153 @@ -105,7 +105,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index bbecc345f..39cb31d51 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%87 @@ -67,87 +67,87 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSValue->JSValueCompatible + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +Equatable -ExpressibleByNilLiteral +Equatable - - -JSValue->ExpressibleByNilLiteral + + +JSValue->Equatable - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a745640e1..744b4f6c5 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index eaa7233f5..161d4df5e 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 4f4eac88f..a2a088ad5 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c23eac5e1..ef6191fd9 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index aa486e3fb..85212971c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index e7e7be745..48cbff456 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -48,11 +48,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%59 @@ -63,27 +63,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -158,7 +158,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 1d67f94e0..2ff7d3a36 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 44b6ba315..c97c1a7ee 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index b49e14fac..e5efef306 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 478dee831..b64fc06d8 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 976d442ab..15b5608c3 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%69 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 556876228..c3a071e1c 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 8cb827d5a..e667ae9d7 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 43e500ca3..7ba80e780 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index d4e5b391b..439a677b4 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 5dadd5fc4..4f8ef2f82 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 838898976..0825158aa 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 6f595d7d4..e887d0cb4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 96f334eb8..9a7a078ad 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 0b260e19e..d716ab43a 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index e21cce20d..2a4dcc199 100644 --- a/index.html +++ b/index.html @@ -533,7 +533,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 7773a9664..d27cad68a 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 7a1212cf7..9f1abf1e4 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 55f01c060..53a0e60c3 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From ad6a5e7cbbda91bb8344d7ac7cc6ae08425689ff Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 17 Aug 2022 17:48:34 +0000 Subject: [PATCH 125/148] deploy: 6e626197a78f2e3144ca43dbbd4b550e1ba79a50 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 38 ++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 45 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 14 +- JSBigInt/index.html | 16 ++- JSBigIntExtended/index.html | 16 ++- JSBridgedClass/index.html | 69 +++++----- JSBridgedType/index.html | 44 +++--- JSClosure/index.html | 12 +- JSClosureProtocol/index.html | 55 ++++---- JSDate/index.html | 12 +- JSError/index.html | 42 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 161 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 15 +- JSPromise/index.html | 6 +- JSString/index.html | 76 +++++----- JSSymbol/index.html | 8 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 42 +++--- JSUInt8ClampedArray/index.html | 12 +- JSValue/index.html | 78 +++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 63 +++++++-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 41 ++++-- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 543 insertions(+), 452 deletions(-) diff --git a/Array/index.html b/Array/index.html index 7256c750e..c054e7ce3 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 2ad9ff0a7..8a3763004 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index f3ef5676f..e1ce40365 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 2deb07847..19905b6e6 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%119 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ce993f30c..fd676ffe9 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%85 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 20fafdcf4..86344cb86 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index bc8acbf18..f524fa1ef 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 8d16ac4fd..ddd256e7a 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index ee21f8da0..c6e2dfb07 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 316537bc7..5446afbf6 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 7f4438072..54c7df888 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 16538c87b..92f4ad4ae 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 64ac8b470..dd43fa511 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index a892d92b5..44ce0ce2d 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 31d1f7fec..3f8b7d673 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 9a41ed0ce..8bb1b04bc 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -40,7 +40,8 @@

public class JSArray: JSBridgedClass  

-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array +class that exposes its properties in a type-safe and Swifty way.

@@ -52,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%37 @@ -67,30 +68,30 @@ - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -103,7 +104,9 @@

Nested Types

JSArray.Iterator
-
+

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows +easy iteration over elements of JSArray instances.

+

Conforms To

@@ -271,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 9d2d79246..b7831c18c 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ba422a9a4..d3b33f3df 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -38,6 +38,11 @@

public class Iterator: IteratorProtocol  
+
+
+

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows +easy iteration over elements of JSArray instances.

+
@@ -47,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%115 @@ -83,7 +88,8 @@

Member Of

JSArray
-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array +class that exposes its properties in a type-safe and Swifty way.

@@ -112,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index ef296ba77..10e503845 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -38,6 +38,12 @@

public final class JSBigInt: JSObject  
+
+
+

A wrapper around the JavaScript BigInt +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -47,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%149 @@ -87,13 +93,13 @@ - + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -234,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index c8b265cb9..2c196dead 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%109 @@ -92,12 +92,18 @@

Conforms To

JSBigInt
-
+

A wrapper around the JavaScript BigInt +class +that exposes its properties in a type-safe and Swifty way.

+

Types Conforming to JSBig​Int​Extended

JSBigInt
-
+

A wrapper around the JavaScript BigInt +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -144,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index e5fc3b3df..4bb072a96 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%135 @@ -76,38 +76,38 @@ - + JSBridgedClass->JSBridgedType - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -121,7 +121,7 @@ - + JSDate->JSBridgedClass @@ -136,23 +136,23 @@ - + JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -172,11 +172,12 @@

Conforms To

Types Conforming to JSBridged​Class

JSArray
-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array +class that exposes its properties in a type-safe and Swifty way.

JSDate
-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -185,7 +186,7 @@

Types Conforming to JSBridged​Class

property if you need those.

JSError
-

A wrapper around the JavaScript Error +

A wrapper around the JavaScript Error class that exposes its properties in a type-safe way.

@@ -193,8 +194,8 @@

Types Conforming to JSBridged​Class

A wrapper around the JavaScript Promise class

JSTypedArray
-

A wrapper around all JavaScript TypedArray -classes that exposes their properties in a type-safe way.

+

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) +classes] that exposes their properties in a type-safe way.

@@ -275,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index d9574cc9a..fe45f4f55 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%43 @@ -68,43 +68,43 @@ - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index e65565fc5..717b602bb 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%31 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -127,7 +127,7 @@

Superclass

Conforms To

JSClosureProtocol
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types are responsible for managing the lifetime of the closure they wrap, but can delegate that task to the user by requiring an explicit release() call.

@@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index bfac79da8..61d402d00 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -40,7 +40,7 @@

public protocol JSClosureProtocol: JSValueCompatible  

-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types are responsible for managing the lifetime of the closure they wrap, but can delegate that task to the user by requiring an explicit release() call.

@@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%59 @@ -69,16 +69,31 @@ - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSClosureProtocol + + @@ -90,26 +105,11 @@ - + JSClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSClosureProtocol - - - @@ -123,7 +123,8 @@

Conforms To

Types Conforming to JSClosure​Protocol

JSOneshotClosure
-

JSOneshotClosure is a JavaScript function that can be called only once.

+

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used +for optimized memory management when compared to the common JSClosure.

JSClosure

JSClosure represents a JavaScript function the body of which is written in Swift. @@ -156,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 461cff625..eba890fbe 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -40,7 +40,7 @@

public final class JSDate: JSBridgedClass  

-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%165 @@ -82,7 +82,7 @@ - + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 6fb8d1b88..1b4f45b70 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -40,7 +40,7 @@

public final class JSError: Error, JSBridgedClass  

-

A wrapper around the JavaScript Error +

A wrapper around the JavaScript Error class that exposes its properties in a type-safe way.

@@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%157 @@ -68,15 +68,18 @@ - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -87,23 +90,20 @@ CustomStringConvertible - + JSError->CustomStringConvertible - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - + -JSError->JSBridgedClass +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 7065abbf6..0c7702fd7 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%55 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 5b99b4eb1..379c8f544 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 630421150..cc3354155 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%67 @@ -81,117 +81,117 @@
- - -Hashable - -Hashable - - - -JSObject->Hashable - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - - - - -JSOneshotClosure - - -JSOneshotClosure - + + + + +Hashable + +Hashable - - -JSOneshotClosure->JSObject - - + + +JSObject->Hashable + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject + + + + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + +JSSymbol + + +JSSymbol + + + + + +JSSymbol->JSObject + + + @@ -201,9 +201,13 @@

Subclasses

JSBigInt
-
+

A wrapper around the JavaScript BigInt +class +that exposes its properties in a type-safe and Swifty way.

+
JSOneshotClosure
-

JSOneshotClosure is a JavaScript function that can be called only once.

+

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used +for optimized memory management when compared to the common JSClosure.

JSClosure

JSClosure represents a JavaScript function the body of which is written in Swift. @@ -214,7 +218,10 @@

Subclasses

This type can be callable as a function using callAsFunction.

JSSymbol
-
+

A wrapper around the JavaScript Symbol +class +that exposes its properties in a type-safe and Swifty way.

+

Conforms To

@@ -431,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 3b9dc6aca..ae9f67184 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index bc1fe8a16..41738ca80 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -40,7 +40,8 @@

public class JSOneshotClosure: JSObject, JSClosureProtocol  

-

JSOneshotClosure is a JavaScript function that can be called only once.

+

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used +for optimized memory management when compared to the common JSClosure.

@@ -51,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%129 @@ -76,7 +77,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -91,7 +92,7 @@ - + JSOneshotClosure->JSObject @@ -113,7 +114,7 @@

Superclass

Conforms To

JSClosureProtocol
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types are responsible for managing the lifetime of the closure they wrap, but can delegate that task to the user by requiring an explicit release() call.

@@ -156,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4f692824e..b4a55c545 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%51 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index a9b197887..36c6ee190 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%91 @@ -78,69 +78,69 @@ - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - + + -JSString->Equatable +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 3b3e4182b..c7f32ef7f 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -38,6 +38,12 @@

public class JSSymbol: JSObject  
+
+
+

A wrapper around the JavaScript Symbol +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -291,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 015ab6ebd..49421b24f 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 967489ac8..d74f24203 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a3a4e9d3c..88f8906b0 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 881179e9f..abedfd681 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -40,8 +40,8 @@

public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement  

-

A wrapper around all JavaScript TypedArray -classes that exposes their properties in a type-safe way.

+

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) +classes] that exposes their properties in a type-safe way.

@@ -52,11 +52,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%103 @@ -67,30 +67,30 @@ + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index bba37c790..30727928a 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -38,6 +38,12 @@

public class JSUInt8ClampedArray: JSTypedArray<UInt8>  
+
+
+

A wrapper around the JavaScript Uint8ClampedArray +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -47,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%125 @@ -105,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 39cb31d51..794b8f023 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%15 @@ -67,27 +67,27 @@ - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible @@ -98,56 +98,56 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 744b4f6c5..222663005 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 161d4df5e..cc4e9c9d5 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a2a088ad5..0a42718fe 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ef6191fd9..74f1ec80e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 85212971c..1b3acf8dd 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 48cbff456..9d932ad62 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -40,6 +40,39 @@

@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
 public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  

+
+

Singleton type responsible for integrating JavaScript event loop as a Swift concurrency executor, conforming to +SerialExecutor protocol from the standard library. To utilize it:

+ +
+
+
    +
  1. Make sure that your target depends on JavaScriptEventLoop in your Packages.swift:
  2. +
+ +
.target(
+    name: "JavaScriptKitExample",
+    dependencies: [
+        "JavaScriptKit",
+        .product(name: "JavaScriptEventLoop", package: "JavaScriptKit")
+    ]
+)
+
+
    +
  1. Add an explicit import in the code that executes *before you start using await and/or Task +APIs (most likely in main.swift):
  2. +
+ +
import JavaScriptEventLoop
+
+
    +
  1. Run this function *before you start using await and/or Task APIs (again, most likely in +main.swift):
  2. +
+ +
JavaScriptEventLoop.installGlobalExecutor()
+
+
@@ -48,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%3 @@ -63,27 +96,27 @@ - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -158,7 +191,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 2ff7d3a36..dcea2725a 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index c97c1a7ee..e5b5be4f2 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index e5efef306..aa15f92e3 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index b64fc06d8..aceb1bfad 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 15b5608c3..33b40ec4c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%9 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index c3a071e1c..2a35d3fcf 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index e667ae9d7..dd2018520 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 7ba80e780..03695dbf9 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 439a677b4..31bfc8f9b 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 4f8ef2f82..aa439a1f9 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 0825158aa..ec32272e7 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index e887d0cb4..ba2eaf8f8 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9a7a078ad..ec27892b8 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index d716ab43a..e6e8b523b 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 2a4dcc199..60c1eab39 100644 --- a/index.html +++ b/index.html @@ -40,7 +40,9 @@

Classes

- +

Singleton type responsible for integrating JavaScript event loop as a Swift concurrency executor, conforming to +SerialExecutor protocol from the standard library. To utilize it:

+
@@ -48,7 +50,8 @@

Classes

-

A wrapper around the JavaScript Array class +

A wrapper around the JavaScript Array +class that exposes its properties in a type-safe and Swifty way.

@@ -58,7 +61,9 @@

Classes

- +

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows +easy iteration over elements of JSArray instances.

+
@@ -66,7 +71,7 @@

Classes

-

A wrapper around the JavaScript Date +

A wrapper around the JavaScript Date class that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches @@ -81,7 +86,7 @@

Classes

-

A wrapper around the JavaScript Error +

A wrapper around the JavaScript Error class that exposes its properties in a type-safe way.

@@ -120,8 +125,8 @@

Classes

-

A wrapper around all JavaScript TypedArray -classes that exposes their properties in a type-safe way.

+

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) +classes] that exposes their properties in a type-safe way.

@@ -130,7 +135,10 @@

Classes

- +

A wrapper around the JavaScript Uint8ClampedArray +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -138,7 +146,10 @@

Classes

- +

A wrapper around the JavaScript BigInt +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -146,7 +157,8 @@

Classes

-

JSOneshotClosure is a JavaScript function that can be called only once.

+

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used +for optimized memory management when compared to the common JSClosure.

@@ -196,7 +208,10 @@

Classes

- +

A wrapper around the JavaScript Symbol +class +that exposes its properties in a type-safe and Swifty way.

+
@@ -291,7 +306,7 @@

Protocols

-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types +

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types are responsible for managing the lifetime of the closure they wrap, but can delegate that task to the user by requiring an explicit release() call.

@@ -533,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d27cad68a..3e4ebfec7 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 9f1abf1e4..e20ace131 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 53a0e60c3..07977f112 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From d95df2cc66d5b296407b24385551cc812dade1f4 Mon Sep 17 00:00:00 2001 From: MaxDesiatov Date: Wed, 17 Aug 2022 17:52:08 +0000 Subject: [PATCH 126/148] deploy: 24a5698358a5931bbd36a6663761f4e18de3def2 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 38 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 +++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 90 +++++++------- JSBridgedType/index.html | 50 ++++---- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 6 +- JSError/index.html | 12 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 138 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 62 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 15 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 418 insertions(+), 417 deletions(-) diff --git a/Array/index.html b/Array/index.html index c054e7ce3..8cb200d93 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 8a3763004..f00883f2b 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index e1ce40365..9bcb3f2a9 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 19905b6e6..ef7f2ab3d 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%127 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index fd676ffe9..8d3ae626e 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%109 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 86344cb86..fe43cfae6 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index f524fa1ef..8f86f6109 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ddd256e7a..28b675019 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index c6e2dfb07..7edd486be 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 5446afbf6..9733a8eac 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 54c7df888..419cd6e08 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 92f4ad4ae..3de59ba9e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index dd43fa511..f14885522 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 44ce0ce2d..2083d770b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 3f8b7d673..4c5a5b8b8 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 8bb1b04bc..c1d09bbff 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%121 @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b7831c18c..0ad0f2f48 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index d3b33f3df..e135e0f0d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%83 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 10e503845..8adf1869a 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%9 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + - + + +JSBigIntExtended + + +JSBigIntExtended + + + + +JSBigInt->JSBigIntExtended + + + + + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 2c196dead..5c17ac4f6 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%153 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4bb072a96..afd13ce0f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%69 @@ -67,77 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - + + - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - + -JSTypedArray->JSBridgedClass +JSArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - + -JSArray->JSBridgedClass +JSDate->JSBridgedClass @@ -156,6 +141,21 @@ + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index fe45f4f55..53eb2b379 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%163 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - + -JSBridgedType->CustomStringConvertible - - +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 717b602bb..c6df47536 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%115 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 61d402d00..b229f81f8 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%91 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index eba890fbe..c9222aff0 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%3 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 1b4f45b70..8ff94bd8c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%145 @@ -78,7 +78,7 @@
- + JSError->JSBridgedClass @@ -90,7 +90,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -102,7 +102,7 @@ Error - + JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 0c7702fd7..0be350419 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%171 @@ -286,7 +286,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 379c8f544..b83e8eacb 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index cc3354155..596b918a8 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%51 @@ -81,114 +81,114 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + -JSFunction - +JSSymbol + -JSFunction +JSSymbol - + -JSFunction->JSObject +JSSymbol->JSObject + + +JSFunction + + +JSFunction + + + + + +JSFunction->JSObject + + + - + JSClosure - - -JSClosure + + +JSClosure JSClosure->JSObject - - - - - -JSBigInt - - -JSBigInt - - - - - -JSBigInt->JSObject - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + -JSSymbol - - -JSSymbol +JSBigInt + + +JSBigInt - - -JSSymbol->JSObject + + +JSBigInt->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ae9f67184..854d67e10 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 41738ca80..bf4ac729e 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%103 @@ -77,7 +77,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -92,7 +92,7 @@ - + JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index b4a55c545..a2b61c874 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%87 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 36c6ee190..d6244aaff 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%33 @@ -78,42 +78,42 @@
- - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - + + -JSString->LosslessStringConvertible +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - +ExpressibleByStringLiteral - - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -129,18 +129,18 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index c7f32ef7f..afef74143 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%99 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 49421b24f..563e55527 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index d74f24203..cfb50d165 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 88f8906b0..b09a19333 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index abedfd681..5b5b48cee 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%139 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 30727928a..4426d5cc3 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%159 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 794b8f023..19125128e 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%17 @@ -67,39 +67,39 @@
- + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->CustomStringConvertible @@ -110,44 +110,44 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 222663005..e5c7671fb 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index cc4e9c9d5..7c29047da 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0a42718fe..0e456a2a6 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 74f1ec80e..c073d1026 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1b3acf8dd..917df2d9f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 9d932ad62..ae34f042a 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%45 @@ -103,7 +103,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -115,7 +115,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -161,8 +161,9 @@

Set JavaScript event loop based executor to be the global executor Note that this should be called before any of the jobs are created. -This installation step will be unnecessary after the custom-executor will be introduced officially. -See also: https://github.com/rjmccall/swift-evolution/blob/custom-executors/proposals/0000-custom-executors.md#the-default-global-concurrent-executor

+This installation step will be unnecessary after custom executor are +introduced officially. See also a draft proposal for custom +executors

@@ -191,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index dcea2725a..a7b741d30 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index e5b5be4f2..6526384d0 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index aa15f92e3..46fce8a6d 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index aceb1bfad..7947f38d0 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 33b40ec4c..480369033 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%133 @@ -66,33 +66,33 @@ - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 2a35d3fcf..aa646ae98 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index dd2018520..546fb5b7e 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 03695dbf9..9b4a41833 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 31bfc8f9b..1f67a2260 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index aa439a1f9..b36c5b3db 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index ec32272e7..4e1680bb8 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index ba2eaf8f8..578089434 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index ec27892b8..39cd3fba7 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index e6e8b523b..731271f74 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 60c1eab39..2f9b3543f 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 3e4ebfec7..cfaddc64d 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index e20ace131..fe05b6f27 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 07977f112..fc2ca9103 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 9371491ef031ff693bcb7ad836091655fd377d8d Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Thu, 18 Aug 2022 15:55:38 +0000 Subject: [PATCH 127/148] deploy: 1afbfaf16598119a851dca39e3b447de6cf52589 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 34 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 96 ++++++++++---------- JSBridgedType/index.html | 50 +++++----- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 36 ++++---- JSDate/index.html | 10 +- JSError/index.html | 6 +- JSFunction/index.html | 62 +++++++++++-- JSFunctionRef/index.html | 2 +- JSObject/index.html | 106 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 74 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 435 insertions(+), 387 deletions(-) diff --git a/Array/index.html b/Array/index.html index 8cb200d93..4b649be85 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index f00883f2b..d47683804 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 9bcb3f2a9..ada2837c8 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ef7f2ab3d..67a72aa4e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%57 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 8d3ae626e..69624eb43 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%143 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index fe43cfae6..d8300dfb7 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 8f86f6109..204ea259a 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 28b675019..c07575a85 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 7edd486be..d2ce454a8 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 9733a8eac..82989eb70 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 419cd6e08..e62cf6395 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 3de59ba9e..ae2f5d6d3 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index f14885522..01287327a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 2083d770b..a39c4c33a 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4c5a5b8b8..bc0223ac4 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index c1d09bbff..e94ef5746 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%75 @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 0ad0f2f48..48677974b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index e135e0f0d..ece927cb2 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%63 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 8adf1869a..c13f0f5f1 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%81 @@ -78,7 +78,7 @@ - + JSBigInt->JSObject @@ -99,7 +99,7 @@ - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 5c17ac4f6..ccf334af9 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%25 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index afd13ce0f..9a70cdc98 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%89 @@ -67,47 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSBridgedClass + + + + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass @@ -121,41 +136,26 @@ - + JSDate->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 53eb2b379..6164c9340 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%31 @@ -67,44 +67,44 @@
- - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - - -JSBridgedType->JSValueCompatible - - + + +JSBridgedType->CustomStringConvertible + + - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c6df47536..54ba05a2b 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%3 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index b229f81f8..b664ea6aa 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%43 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index c9222aff0..343f3218f 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%103 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 8ff94bd8c..7862e130a 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%67 @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 0be350419..ba09b3ebd 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -25,7 +25,7 @@ @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%39 @@ -150,7 +150,7 @@

@discardableResult
-    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) -> JSValue  
+ public func callAsFunction(this: JSObject, arguments: [ConvertibleToJSValue]) -> JSValue

Call this function with given arguments and binding given this as context.

@@ -169,7 +169,7 @@

Parameters

this - JSObject? + JSObject

The value to be passed as the this parameter to this function.

@@ -184,6 +184,41 @@

Parameters

Returns

The result of this call.

+
+
+

+ call​AsFunction(arguments:​) +

+
+
@discardableResult
+    public func callAsFunction(arguments: [ConvertibleToJSValue]) -> JSValue  
+
+
+

Call this function with given arguments.

+ +
+

Parameters

+ + + + + + + + + + + + + + + + +
arguments[Convertible​ToJSValue]

Arguments to be passed to this function.

+
+

Returns

+

The result of this call.

+

@@ -191,7 +226,20 @@

@discardableResult
-    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) -> JSValue  
+ public func callAsFunction(this: JSObject, _ arguments: ConvertibleToJSValue...) -> JSValue +
+
+

A variadic arguments version of callAsFunction.

+ +
+
+
+

+ call​AsFunction(_:​) +

+
+
@discardableResult
+    public func callAsFunction(_ arguments: ConvertibleToJSValue...) -> JSValue  

A variadic arguments version of callAsFunction.

@@ -286,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index b83e8eacb..c3f1a253e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 596b918a8..8c34cfb21 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%149 @@ -82,16 +82,28 @@ - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + + + + +Hashable + +Hashable + + + +JSObject->Hashable + + @@ -100,23 +112,11 @@ Equatable - + JSObject->Equatable - - -Hashable - -Hashable - - - -JSObject->Hashable - - - JSSymbol @@ -127,56 +127,56 @@ - + JSSymbol->JSObject - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - + -JSOneshotClosure - +JSFunction + -JSOneshotClosure +JSFunction - - -JSOneshotClosure->JSObject + + +JSFunction->JSObject + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + JSBigInt @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 854d67e10..144a505aa 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index bf4ac729e..787427ed1 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%51 @@ -67,33 +67,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a2b61c874..277b2c60e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%15 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index d6244aaff..5d7c05d83 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%125 @@ -78,69 +78,69 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - + + -JSString->Equatable +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - + -JSString->ConvertibleToJSValue +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index afef74143..0b4bbc3b1 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%171 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 563e55527..3893db6f0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index cfb50d165..b219025e2 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index b09a19333..f60400059 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 5b5b48cee..ef242e9fd 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%137 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 4426d5cc3..dac14bb1e 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%167 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 19125128e..1ded012dd 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%109 @@ -67,75 +67,75 @@
- + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -146,7 +146,7 @@ JSValueCompatible - + JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index e5c7671fb..f0caaf5b0 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7c29047da..cf0441de8 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0e456a2a6..0395d1565 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c073d1026..1a00e221c 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 917df2d9f..a99968308 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index ae34f042a..b1e437296 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%9 @@ -103,7 +103,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -115,7 +115,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index a7b741d30..ea259be54 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 6526384d0..a9d915437 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 46fce8a6d..bb8a8b9c9 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 7947f38d0..86a94ed9d 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 480369033..5724192a1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%19 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index aa646ae98..d5d0e6877 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 546fb5b7e..ed28b4991 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 9b4a41833..122eecb24 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 1f67a2260..d6ffaf6ca 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index b36c5b3db..93413e81f 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 4e1680bb8..8d1a3622c 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 578089434..2194340b4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 39cd3fba7..64fadb6c3 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 731271f74..7574226da 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 2f9b3543f..779e3f00d 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index cfaddc64d..f0d919689 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index fe05b6f27..58ad7f206 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index fc2ca9103..51e14808d 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 36a44a271a95ff49a38d139a9a76b05e5e0e7f68 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 22 Aug 2022 11:43:12 +0000 Subject: [PATCH 128/148] deploy: a129f62171bf3610633313c2db6acdca41cdb195 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 6 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 88 +++++++-------- JSBridgedType/index.html | 12 +-- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 50 ++++----- JSDate/index.html | 36 +++---- JSError/index.html | 50 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 126 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 82 +++++++------- JSSymbol/index.html | 2 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 90 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 415 insertions(+), 415 deletions(-) diff --git a/Array/index.html b/Array/index.html index 4b649be85..17c016d53 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index d47683804..291323bd7 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index ada2837c8..754533664 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 67a72aa4e..ad59c8da5 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%145 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 69624eb43..ddee242b7 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%125 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index d8300dfb7..0af44efdc 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 204ea259a..cc32a8f19 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index c07575a85..911311b04 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index d2ce454a8..febee639c 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 82989eb70..0feac70f9 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e62cf6395..b90f2dc5d 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index ae2f5d6d3..39995cee9 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 01287327a..58c79fc0b 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index a39c4c33a..4d294795e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index bc0223ac4..b539345fc 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index e94ef5746..881828592 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%83 @@ -78,7 +78,7 @@
- + JSArray->JSBridgedClass @@ -90,7 +90,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 48677974b..27ba3726f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ece927cb2..2c59a375b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%79 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index c13f0f5f1..69f049492 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%15 @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index ccf334af9..2695de333 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%89 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 9a70cdc98..1a4d1ce11 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%31 @@ -67,62 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -136,25 +136,25 @@ - + JSDate->JSBridgedClass - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6164c9340..13a6d6679 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%23 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -86,7 +86,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 54ba05a2b..bb70672f7 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%165 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index b664ea6aa..b6a8f5003 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%7 @@ -69,31 +69,16 @@
- + JSValueCompatible - -JSValueCompatible - - - -JSClosureProtocol->JSValueCompatible - - - - - -JSClosure - -JSClosure - - +JSValueCompatible - + -JSClosure->JSClosureProtocol - - +JSClosureProtocol->JSValueCompatible + + @@ -105,11 +90,26 @@ - + JSOneshotClosure->JSClosureProtocol + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 343f3218f..7a6745188 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%119 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 7862e130a..8aa9bead9 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%137 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index ba09b3ebd..1e25ffbff 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%161 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index c3f1a253e..38f590ad8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 8c34cfb21..3445158d1 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%61 @@ -81,99 +81,99 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -JSSymbol - - -JSSymbol + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSOneshotClosure + + +JSOneshotClosure - + -JSSymbol->JSObject - - +JSOneshotClosure->JSObject + + - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSSymbol + + +JSSymbol - - -JSFunction->JSObject - - + + +JSSymbol->JSObject + + - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSObject + + +JSClosure->JSObject @@ -187,7 +187,7 @@ - + JSBigInt->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 144a505aa..f72c71007 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 787427ed1..f32b243a6 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%131 @@ -77,7 +77,7 @@
- + JSOneshotClosure->JSObject @@ -92,7 +92,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 277b2c60e..3cd4f56d1 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%157 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 5d7c05d83..7de242464 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%107 @@ -78,69 +78,69 @@
+ + +LosslessStringConvertible + +LosslessStringConvertible + + + +JSString->LosslessStringConvertible + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - - - - -Equatable - -Equatable - - - -JSString->Equatable - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue - - + + - + ExpressibleByStringLiteral - -ExpressibleByStringLiteral + +ExpressibleByStringLiteral JSString->ExpressibleByStringLiteral + + + + + +Equatable + +Equatable + + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 0b4bbc3b1..0bec1f508 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 3893db6f0..df5a5fd71 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index b219025e2..573a67d6a 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index f60400059..302fd83c2 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ef242e9fd..14cde8abb 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%101 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index dac14bb1e..52c84db4c 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%3 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 1ded012dd..43f2465d0 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%45 @@ -67,87 +67,87 @@
- + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index f0caaf5b0..a2793db9b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index cf0441de8..cf7101f88 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0395d1565..27c5aefaf 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 1a00e221c..bbd521e3f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a99968308..9b1b650c8 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index b1e437296..4aaf8dfca 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%95 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index ea259be54..d00b7fafb 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index a9d915437..f3569c094 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index bb8a8b9c9..7481c5ad9 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 86a94ed9d..310db0753 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 5724192a1..b8a77d2ba 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%151 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index d5d0e6877..b303b9adb 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index ed28b4991..fb0344753 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 122eecb24..655bf9469 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index d6ffaf6ca..e9ca3df36 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 93413e81f..6a2422240 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 8d1a3622c..1340b38cd 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 2194340b4..387a47c50 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 64fadb6c3..4e276c83d 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 7574226da..0d789baea 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 779e3f00d..bd6bebb85 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index f0d919689..09183ad8f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 58ad7f206..6a0ca671f 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 51e14808d..8642c6436 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 276e963d40407e85dfd8be03e0e6172a6644458b Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 29 Aug 2022 03:01:54 +0000 Subject: [PATCH 129/148] deploy: 449c04192bb5530895f4ce0c79167180c417820f --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 ++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 72 +++++------ JSBridgedType/index.html | 42 +++---- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 6 +- JSDate/index.html | 10 +- JSError/index.html | 26 ++-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 138 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 86 +++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 +++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 434 insertions(+), 434 deletions(-) diff --git a/Array/index.html b/Array/index.html index 17c016d53..3a5e8cb45 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 291323bd7..3fe786b13 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 754533664..fd63fd661 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ad59c8da5..90012812b 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%31 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ddee242b7..eb9af3bdb 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%69 @@ -76,7 +76,7 @@ - + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 0af44efdc..b4cd9099e 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index cc32a8f19..591c09553 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 911311b04..b2b77deaf 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index febee639c..574af7571 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 0feac70f9..720711112 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index b90f2dc5d..7bc10f6d3 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 39995cee9..7a2bf4526 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 58c79fc0b..a14a9b951 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 4d294795e..b8b07fc9d 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index b539345fc..8c6e07c48 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 881828592..48fa800b1 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%105 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 27ba3726f..8c3ea6d67 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 2c59a375b..ace935ef2 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%45 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 69f049492..0db06a370 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%37 JSBigInt - -JSBigInt + +JSBigInt + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + + - + JSObject - - -JSObject + + +JSObject JSBigInt->JSObject - - - - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 2695de333..5d11c9d96 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%139 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 1a4d1ce11..4cffcc80e 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%49 @@ -67,32 +67,32 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -106,40 +106,40 @@ - + JSArray->JSBridgedClass - + -JSPromise - +JSDate + -JSPromise +JSDate - + -JSPromise->JSBridgedClass +JSDate->JSBridgedClass - - -JSDate - - -JSDate + + +JSError + + +JSError - - -JSDate->JSBridgedClass - - + + +JSError->JSBridgedClass + + @@ -151,7 +151,7 @@ - + JSTypedArray->JSBridgedClass @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 13a6d6679..8355780f4 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%93 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index bb70672f7..8d0e373b0 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%19 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index b6a8f5003..0c7209c78 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%149 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 7a6745188..b914c3173 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%117 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 8aa9bead9..b7c2a489c 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%161 @@ -68,27 +68,27 @@
- + -CustomStringConvertible +Error -CustomStringConvertible +Error - + -JSError->CustomStringConvertible +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1e25ffbff..1b0e58341 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%3 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 38f590ad8..e6f433437 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 3445158d1..727b60fff 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%75 @@ -81,114 +81,114 @@
- - -Hashable - -Hashable - - - -JSObject->Hashable - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible + + + + + +Hashable + +Hashable + + + +JSObject->Hashable - - -JSOneshotClosure - - -JSOneshotClosure + + +JSSymbol + + +JSSymbol - - -JSOneshotClosure->JSObject - - + + +JSSymbol->JSObject + + - - -JSFunction - - -JSFunction + + +JSBigInt + + +JSBigInt - - -JSFunction->JSObject - - + + +JSBigInt->JSObject + + - + -JSSymbol - +JSOneshotClosure + -JSSymbol +JSOneshotClosure - - -JSSymbol->JSObject + + +JSOneshotClosure->JSObject - + -JSClosure - +JSFunction + -JSClosure +JSFunction - - -JSClosure->JSObject + + +JSFunction->JSObject - + -JSBigInt - - -JSBigInt +JSClosure + + +JSClosure - - -JSBigInt->JSObject + + +JSClosure->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f72c71007..74bae3817 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index f32b243a6..1fd4fffe4 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%169 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 3cd4f56d1..c7f41512c 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%101 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 7de242464..16c35d0c2 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%7 @@ -78,69 +78,69 @@
- + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - +LosslessStringConvertible - - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - - +Equatable - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 0bec1f508..c328a666e 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%145 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index df5a5fd71..0d800df15 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 573a67d6a..99e6434df 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 302fd83c2..17c8edd9c 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 14cde8abb..a6c794285 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%25 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 52c84db4c..3493c2aeb 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%157 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 43f2465d0..d2dfcb693 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%123 @@ -67,87 +67,87 @@
- + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByIntegerLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a2793db9b..87b7b3848 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index cf7101f88..7a12ba2e7 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 27c5aefaf..bec4928d0 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index bbd521e3f..02d1983dd 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 9b1b650c8..a2c3210f4 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 4aaf8dfca..24d8946ed 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%63 @@ -96,27 +96,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index d00b7fafb..c4695d621 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index f3569c094..d03c4553b 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 7481c5ad9..525b8dc55 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 310db0753..4339d97cb 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b8a77d2ba..7c4e025a5 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%111 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b303b9adb..61802e4c6 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index fb0344753..355c5d66e 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 655bf9469..4d0661c90 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index e9ca3df36..97213c584 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 6a2422240..905be8436 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 1340b38cd..bc5b445e1 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 387a47c50..4944399c4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 4e276c83d..165f14cdf 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 0d789baea..709694e7a 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index bd6bebb85..d3c407f8b 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 09183ad8f..d3083542f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 6a0ca671f..02622e8d6 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 8642c6436..705bc55f4 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From b7f7ebe72ac0ffd436b7b18b242b794c5d53d33f Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 20 Sep 2022 01:13:46 +0000 Subject: [PATCH 130/148] deploy: 73cdff2ec2d42ba37b82b6cb18cd7a9d90822f29 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 +++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 82 +++++++------- JSBridgedType/index.html | 34 +++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 52 ++++----- JSDate/index.html | 6 +- JSError/index.html | 12 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 130 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 74 ++++++------ JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 68 +++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 388 insertions(+), 388 deletions(-) diff --git a/Array/index.html b/Array/index.html index 3a5e8cb45..5b8677b8b 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 3fe786b13..087a69826 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index fd63fd661..f632573d3 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 90012812b..8fade6978 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%125 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index eb9af3bdb..f0b3c10c3 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%59 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index b4cd9099e..dfd7bb71b 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 591c09553..fc6b8a7f7 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index b2b77deaf..729b08833 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 574af7571..5250063b5 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 720711112..6d59cdbac 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 7bc10f6d3..3cf769d26 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 7a2bf4526..169f88130 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a14a9b951..c76211011 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index b8b07fc9d..0fc9ece9f 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 8c6e07c48..08ffdff2f 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 48fa800b1..f5bc60d28 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%47 @@ -75,7 +75,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -90,7 +90,7 @@ - + JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 8c3ea6d67..b30d7fa2e 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ace935ef2..eb845ed65 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%73 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 0db06a370..6d1e77944 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%65 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + - + + +JSBigIntExtended + + +JSBigIntExtended + + + + +JSBigInt->JSBigIntExtended + + + + + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 5d11c9d96..35d0f1845 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%95 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4cffcc80e..d5241c88d 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%81 @@ -67,34 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - + + @@ -106,38 +91,53 @@ - + JSArray->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -151,7 +151,7 @@ - + JSTypedArray->JSBridgedClass @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 8355780f4..823918118 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%27 @@ -74,37 +74,37 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 8d0e373b0..5a2e46afd 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%53 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 0c7209c78..7041094cf 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%131 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index b914c3173..b5fd2f8c0 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%101 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index b7c2a489c..2193049b2 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%35 @@ -75,7 +75,7 @@ Error
- + JSError->Error @@ -87,7 +87,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 1b0e58341..aaaf5a7c0 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%77 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e6f433437..149be899a 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 727b60fff..b4d6d813f 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%107 @@ -81,86 +81,101 @@
- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - - -CustomStringConvertible - -CustomStringConvertible + + +Equatable + +Equatable - - -JSObject->CustomStringConvertible - - + + +JSObject->Equatable + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + -JSSymbol - +JSOneshotClosure + -JSSymbol +JSOneshotClosure - + -JSSymbol->JSObject +JSOneshotClosure->JSObject - + -JSBigInt - - -JSBigInt +JSSymbol + + +JSSymbol - - -JSBigInt->JSObject + + +JSSymbol->JSObject - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - + -JSOneshotClosure->JSObject - - +JSClosure->JSObject + + + + + +JSBigInt + + +JSBigInt + + + + + +JSBigInt->JSObject + + @@ -172,26 +187,11 @@ - + JSFunction->JSObject - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 74bae3817..c4c0a226d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1fd4fffe4..8c2121f72 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%163 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index c7f41512c..3f16acbf9 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%43 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 16c35d0c2..b4da57b5d 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%7 +%9 @@ -78,27 +78,33 @@
- - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue @@ -109,38 +115,32 @@ Equatable - + JSString->Equatable - - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - + -JSString->ConstructibleFromJSValue +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index c328a666e..4ebab0714 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%143 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 0d800df15..15fc07624 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 99e6434df..9ee07a293 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 17c8edd9c..a1d4c73cc 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index a6c794285..6d6a016a2 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%169 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 3493c2aeb..343c5eb6b 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%139 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index d2dfcb693..ca63afb7c 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%147 @@ -67,15 +67,15 @@
- + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -86,7 +86,7 @@ Equatable - + JSValue->Equatable @@ -98,56 +98,56 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 87b7b3848..fc11fae51 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7a12ba2e7..6df721ecb 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index bec4928d0..790cea176 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 02d1983dd..7982d5fdc 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index a2c3210f4..bcbf9eecf 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 24d8946ed..4ca67e564 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%3 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index c4695d621..6e2ec13ff 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index d03c4553b..6ffd6bca1 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 525b8dc55..9aa6f98d1 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 4339d97cb..a4e8e55bf 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 7c4e025a5..b09ab35ef 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%21 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 61802e4c6..01e5902a1 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 355c5d66e..60a7b3d55 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 4d0661c90..99e0980e7 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 97213c584..666d98438 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 905be8436..43fa4645e 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index bc5b445e1..f015237f4 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 4944399c4..483d631e1 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 165f14cdf..de50ad92c 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 709694e7a..f17d91568 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index d3c407f8b..8adbf5c96 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d3083542f..81d82522a 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 02622e8d6..31751fe7e 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 705bc55f4..8aa2badea 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 589f4f0e71fef2ea214d38dc866a82b6311eaedb Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Tue, 27 Sep 2022 05:23:35 +0000 Subject: [PATCH 131/148] deploy: e9422fecd4523288fb70be92759009c119bc9db4 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 ++-- Int16/index.html | 16 +-- Int32/index.html | 16 +-- Int64/index.html | 2 +- Int8/index.html | 16 +-- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 +++++------ JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 108 ++++++++++---------- JSBridgedType/index.html | 32 +++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 +++---- JSDate/index.html | 10 +- JSError/index.html | 36 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 118 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 84 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 70 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++---- UInt/index.html | 18 ++-- UInt16/index.html | 16 +-- UInt32/index.html | 16 +-- UInt64/index.html | 2 +- UInt8/index.html | 16 +-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 482 insertions(+), 482 deletions(-) diff --git a/Array/index.html b/Array/index.html index 5b8677b8b..49b6ab8fe 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 087a69826..4510ba3e4 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index f632573d3..4e2a2e249 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 8fade6978..a0f486e17 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%135 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index f0b3c10c3..78586f569 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%23 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index dfd7bb71b..994e58d48 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index fc6b8a7f7..704f9699b 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 729b08833..5946cc8e3 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 5250063b5..98214ece2 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 6d59cdbac..b2f2d23da 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 3cf769d26..729f7d328 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 169f88130..de61c8731 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index c76211011..3f7513d7a 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 0fc9ece9f..37641b4b1 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 08ffdff2f..4addac2ef 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f5bc60d28..b0c420c1f 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%51 @@ -75,7 +75,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -90,7 +90,7 @@ - + JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b30d7fa2e..811011924 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index eb845ed65..66e5d930c 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%79 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 6d1e77944..4a1c76d2b 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%71 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 35d0f1845..cde55fa77 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%57 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index d5241c88d..76dc8eaca 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%121 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + + +JSError + + +JSError + + + + + +JSError->JSBridgedClass + + + + -JSArray - - -JSArray +JSPromise + + +JSPromise - + -JSArray->JSBridgedClass +JSPromise->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - + -JSPromise - - -JSPromise +JSArray + + +JSArray - + -JSPromise->JSBridgedClass +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - + -JSTypedArray->JSBridgedClass +JSDate->JSBridgedClass @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 823918118..e66e83db7 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%63 @@ -68,16 +68,16 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -86,25 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 5a2e46afd..4aacb32c8 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%103 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 7041094cf..754d28888 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%43 @@ -69,31 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index b5fd2f8c0..64597ccfa 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%83 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 2193049b2..486288898 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%89 @@ -80,30 +80,30 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index aaaf5a7c0..9ef1702cc 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%29 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 149be899a..7b08f944e 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index b4d6d813f..6a158f323 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%145 @@ -81,116 +81,116 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - + Hashable - -Hashable + +Hashable JSObject->Hashable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - + -JSClosure->JSObject +JSBigInt->JSObject - + -JSBigInt - - -JSBigInt +JSOneshotClosure + + +JSOneshotClosure - - -JSBigInt->JSObject + + +JSOneshotClosure->JSObject - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index c4c0a226d..f5dcebae4 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 8c2121f72..43c67ff4b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%37 @@ -67,33 +67,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 3f16acbf9..1c83620ca 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%33 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index b4da57b5d..74ca5bf22 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%163 @@ -78,69 +78,69 @@
- - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - + -JSString->ConstructibleFromJSValue +JSString->ExpressibleByStringLiteral - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - - -LosslessStringConvertible + + +ConvertibleToJSValue + -LosslessStringConvertible +ConvertibleToJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConvertibleToJSValue - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 4ebab0714..84ba49e1b 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%19 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 15fc07624..9a1c75684 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 9ee07a293..c84ebe581 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a1d4c73cc..26b04ad15 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 6d6a016a2..8949a34bf 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%97 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 343c5eb6b..8ce657f3c 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%141 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ca63afb7c..c7369b3d3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%3 @@ -67,39 +67,39 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -110,7 +110,7 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral @@ -122,32 +122,32 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByFloatLiteral +JSValueCompatible -ExpressibleByFloatLiteral +JSValueCompatible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index fc11fae51..6d6368edf 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 6df721ecb..7ea3b50ea 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 790cea176..37b1613cb 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 7982d5fdc..67b10f9c0 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index bcbf9eecf..1b8501eed 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 4ca67e564..4e5bbd258 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%109 @@ -103,7 +103,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -115,7 +115,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 6e2ec13ff..753d88681 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 6ffd6bca1..6356bebb8 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 9aa6f98d1..b45db9800 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index a4e8e55bf..8e9225988 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index b09ab35ef..0fe81a39a 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%115 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 01e5902a1..b4edcf12a 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 60a7b3d55..96e3d4f3d 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 99e0980e7..2fa914622 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 666d98438..c012aa304 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 43fa4645e..0136d9bce 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index f015237f4..08b1e53e4 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 483d631e1..4c899f216 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index de50ad92c..fda177880 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index f17d91568..f8aa359d5 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 8adbf5c96..65d2c3379 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 81d82522a..9b3d96873 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 31751fe7e..c7efa9103 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 8aa2badea..24fbf150e 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From d39c8eb80ed8d13a5be6674fbd104c825d93768a Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 30 Sep 2022 14:22:37 +0000 Subject: [PATCH 132/148] deploy: a549f585f12557ada81f036dd7bcdd4e3c33515b --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 12 +-- JSBigIntExtended/index.html | 10 +-- JSBridgedClass/index.html | 100 +++++++++++----------- JSBridgedType/index.html | 12 +-- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 36 ++++---- JSDate/index.html | 10 +-- JSError/index.html | 40 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 68 +++++++-------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 76 ++++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 78 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 351 insertions(+), 351 deletions(-) diff --git a/Array/index.html b/Array/index.html index 49b6ab8fe..d46316ef5 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 4510ba3e4..89ca7d7fb 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 4e2a2e249..71384921a 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index a0f486e17..8ac4b9d1a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%3 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 78586f569..ad63c1734 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%55 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 994e58d48..c4f7aaf9d 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 704f9699b..a84322adc 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 5946cc8e3..a7cde39f6 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 98214ece2..584a7ec2b 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index b2f2d23da..305779a53 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 729f7d328..49ce13b7a 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index de61c8731..6a267d5b7 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 3f7513d7a..3ecba35d6 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 37641b4b1..82a7029d9 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 4addac2ef..e62971e78 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b0c420c1f..b54e41a9c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%93 @@ -68,30 +68,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 811011924..7697a4961 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 66e5d930c..a5613a830 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%51 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 4a1c76d2b..4d4c0d1ab 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%65 @@ -78,7 +78,7 @@
- + JSBigInt->JSBigIntExtended @@ -93,13 +93,13 @@ - + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index cde55fa77..ab16ac6c4 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%73 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 76dc8eaca..f332fffec 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%79 @@ -67,94 +67,94 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSPromise - - -JSPromise +JSTypedArray + + +JSTypedArray - + -JSPromise->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - - -JSDate - - -JSDate + + +JSError + + +JSError - - -JSDate->JSBridgedClass - - + + +JSError->JSBridgedClass + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index e66e83db7..6d2cb5d32 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%153 @@ -74,7 +74,7 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible @@ -86,7 +86,7 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 4aacb32c8..de9717737 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%9 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 754d28888..53417da61 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%167 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 64597ccfa..7b299a557 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%99 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 486288898..aa26f0446 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%139 @@ -68,30 +68,30 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass - - -JSBridgedClass - + + +Error -JSBridgedClass - +Error - - - -JSError->JSBridgedClass + + +JSError->Error @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 9ef1702cc..cd6829f08 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%37 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 7b08f944e..af6f1b289 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 6a158f323..6b3c35323 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%105 @@ -88,49 +88,34 @@ Equatable
- + JSObject->Equatable - + Hashable - -Hashable + +Hashable JSObject->Hashable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - + + @@ -142,7 +127,7 @@ - + JSClosure->JSObject @@ -157,7 +142,7 @@ - + JSBigInt->JSObject @@ -172,7 +157,7 @@ - + JSOneshotClosure->JSObject @@ -187,11 +172,26 @@ - + JSFunction->JSObject + + +JSSymbol + + +JSSymbol + + + + + +JSSymbol->JSObject + + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f5dcebae4..35bfaebce 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 43c67ff4b..ca1885354 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%161 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 1c83620ca..f2d46a7d8 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%61 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 74ca5bf22..9df1f880c 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%15 @@ -78,69 +78,69 @@
- - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - + -JSString->LosslessStringConvertible +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 84ba49e1b..abec2d657 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%33 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 9a1c75684..0ce7e325c 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c84ebe581..c998204c3 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 26b04ad15..d4317eb8a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 8949a34bf..46c31047f 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%45 @@ -67,30 +67,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 8ce657f3c..425f305b4 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%41 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index c7369b3d3..2772be1c3 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%123 @@ -67,39 +67,39 @@
- + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSValue->CustomStringConvertible + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -110,44 +110,44 @@ ExpressibleByStringLiteral - + JSValue->ExpressibleByStringLiteral - + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByNilLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 6d6368edf..a3aa4045b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 7ea3b50ea..be7b8e0e3 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 37b1613cb..ca4bfdba3 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 67b10f9c0..6371912c8 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 1b8501eed..93f50957e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 4e5bbd258..2e1166d6f 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%27 @@ -103,7 +103,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -115,7 +115,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -192,7 +192,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 753d88681..18e5fb0fd 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 6356bebb8..e01b42484 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index b45db9800..8edd7b444 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 8e9225988..ca079bf00 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 0fe81a39a..ecc706564 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%147 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b4edcf12a..92fb5ee9c 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 96e3d4f3d..abe1c9def 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 2fa914622..a7fbf34a2 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index c012aa304..7aa5cf62c 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 0136d9bce..d59089bee 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 08b1e53e4..64c9a0c2f 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 4c899f216..d3a7cca84 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index fda177880..1720689c3 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index f8aa359d5..45559b1b7 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 65d2c3379..20b546ca1 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 9b3d96873..46e74ada0 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index c7efa9103..92e044b45 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 24fbf150e..d0527a2e2 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From c051b2147ad68fa20ee682a60c1d78af2467bd34 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 3 Oct 2022 15:38:08 +0000 Subject: [PATCH 133/148] deploy: 320282f79466432a24decc64e56157d562c208f2 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 34 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 +++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 84 +++++++------- JSBridgedType/index.html | 44 ++++---- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 12 +- JSDate/index.html | 6 +- JSError/index.html | 38 +++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 132 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 60 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 55 ++++++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 456 insertions(+), 431 deletions(-) diff --git a/Array/index.html b/Array/index.html index d46316ef5..1c6ff269e 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 89ca7d7fb..54404b3a9 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 71384921a..169303939 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 8ac4b9d1a..b52379bce 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%131 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index ad63c1734..65d8b6a2c 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%13 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index c4f7aaf9d..ab21fb46f 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index a84322adc..63152f201 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index a7cde39f6..213c4b4ea 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 584a7ec2b..53f29d3c0 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 305779a53..104282a77 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 49ce13b7a..8c15fd4d5 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 6a267d5b7..bdb0edb23 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 3ecba35d6..5b30603f3 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 82a7029d9..3728dc3df 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index e62971e78..0e12014f1 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b54e41a9c..047aa34cc 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%99 @@ -68,30 +68,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 7697a4961..8329d6e01 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index a5613a830..5a0dbf02f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%155 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 4d4c0d1ab..c3e1915f0 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%119 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index ab16ac6c4..baa0d5873 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%93 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f332fffec..7f14c48ed 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%79 +%137 @@ -67,94 +67,94 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSDate - +JSPromise + -JSDate +JSPromise - + -JSDate->JSBridgedClass +JSPromise->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + JSError - - -JSError + + +JSError JSError->JSBridgedClass - - + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 6d2cb5d32..78af76295 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%111 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index de9717737..b16e8174f 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%3 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 53417da61..6cd522aa5 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%43 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 7b299a557..1f430fbcd 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%19 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index aa26f0446..b3731ef84 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%57 @@ -68,30 +68,30 @@
+ + +Error + +Error + + + +JSError->Error + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -Error - -Error - - - -JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index cd6829f08..cb1ec2546 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%151 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index af6f1b289..48d80d0ef 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 6b3c35323..dd98dfcc4 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%25 @@ -82,55 +82,70 @@
- + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - - -CustomStringConvertible - -CustomStringConvertible + + +JSOneshotClosure + + +JSOneshotClosure + - - -JSObject->CustomStringConvertible - - - - -JSClosure - - -JSClosure + + +JSOneshotClosure->JSObject + + + + + +JSSymbol + + +JSSymbol - - -JSClosure->JSObject - - + + +JSSymbol->JSObject + + @@ -142,53 +157,38 @@ - + JSBigInt->JSObject - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - - - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 35bfaebce..c9c11960b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index ca1885354..1bbd48cd1 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%105 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index f2d46a7d8..aef1da6d9 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%127 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 9df1f880c..1f130e43f 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%77 @@ -93,54 +93,54 @@
- + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - + -JSString->Equatable +JSString->LosslessStringConvertible - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - +Equatable - - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index abec2d657..f93f2062d 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%89 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 0ce7e325c..1b8ea432c 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index c998204c3..61ac4b0bc 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index d4317eb8a..3d1445f5a 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 46c31047f..ba5eb67ca 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%51 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 425f305b4..d4467e004 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%9 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 2772be1c3..ee34adf88 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%159 @@ -67,63 +67,63 @@
- + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible - + -Equatable +ExpressibleByNilLiteral -Equatable +ExpressibleByNilLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +ExpressibleByFloatLiteral -ExpressibleByStringLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral @@ -134,20 +134,20 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index a3aa4045b..fa7d99659 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index be7b8e0e3..ed2a38d60 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ca4bfdba3..bf6ac11de 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6371912c8..d37666a5d 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 93f50957e..74cb6081f 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 2e1166d6f..8848f65ce 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -25,7 +25,7 @@ @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%71 @@ -96,27 +96,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable @@ -135,7 +135,32 @@

Conforms To

Properties

-
+
+

+ queue​Microtask +

+
+
public var queueMicrotask: @Sendable (@escaping () -> Void) -> Void
+
+
+

A function that queues a given closure as a microtask into JavaScript event loop. +See also: https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide

+ +
+
+
+

+ set​Timeout +

+
+
public var setTimeout: @Sendable (Double, @escaping () -> Void) -> Void
+
+
+

A function that invokes a given closure after a specified number of milliseconds.

+ +
+
+

shared

@@ -192,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 18e5fb0fd..4f83a7eb6 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index e01b42484..68b0e8583 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 8edd7b444..f4b7f5142 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ca079bf00..5dd6fa4f6 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ecc706564..2d3470827 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%65 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 92fb5ee9c..b668c2ce8 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index abe1c9def..e0c9656d6 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index a7fbf34a2..7426157b4 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 7aa5cf62c..3ebae3522 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index d59089bee..6802f58f3 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 64c9a0c2f..abde88ad2 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index d3a7cca84..56acf0313 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 1720689c3..403bb7382 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 45559b1b7..dd9b3c5af 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 20b546ca1..06899d157 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 46e74ada0..9111dbfaf 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 92e044b45..3142baeb5 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index d0527a2e2..3258cbcf4 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From b1f2ee6ec8dd0a50ed470d1d5bfb2ae9440bbb71 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 3 Oct 2022 17:46:35 +0000 Subject: [PATCH 134/148] deploy: dac9d7b0342c5027fc74c8d2f212f10624123a7b --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +-- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 ++++++------- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 102 +++++++++++----------- JSBridgedType/index.html | 34 ++++---- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 52 +++++------ JSDate/index.html | 38 ++++---- JSError/index.html | 48 +++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 98 ++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 62 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++---- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +-- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 421 insertions(+), 421 deletions(-) diff --git a/Array/index.html b/Array/index.html index 1c6ff269e..495563a1f 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 54404b3a9..0f5833908 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 169303939..eb32ebe6a 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index b52379bce..7aed34c99 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%165 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 65d8b6a2c..f6f9b1b3b 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%123 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index ab21fb46f..061441c0e 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 63152f201..ca173d1d8 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 213c4b4ea..0534f9776 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 53f29d3c0..0d0f728b7 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 104282a77..0304332e4 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 8c15fd4d5..b7a790171 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index bdb0edb23..aaf605d49 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 5b30603f3..19e91f26d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 3728dc3df..7e5c0a5fc 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 0e12014f1..31921edd1 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 047aa34cc..14fc1944a 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%103 @@ -75,7 +75,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -90,7 +90,7 @@ - + JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 8329d6e01..f80b584e6 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 5a0dbf02f..2095bd636 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%155 +%171 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index c3e1915f0..d73e0384b 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%139 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended - + JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index baa0d5873..df0e0d7e1 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%133 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 7f14c48ed..470e85c9c 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%109 @@ -67,94 +67,94 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 78af76295..9db37a3ca 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%15 @@ -74,37 +74,37 @@ CustomStringConvertible
- + JSBridgedType->CustomStringConvertible - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index b16e8174f..6f09a4208 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%81 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 6cd522aa5..33e744f1c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%73 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 1f430fbcd..021e48a4e 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%27 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index b3731ef84..99e035dbf 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%59 @@ -68,42 +68,42 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - + -JSError->Error +JSError->CustomStringConvertible + + +Error + +Error + + + +JSError->Error + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSError->JSBridgedClass - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index cb1ec2546..28e5c16f8 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%23 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 48d80d0ef..435441733 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index dd98dfcc4..50c311a90 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%147 @@ -81,27 +81,27 @@
- + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSObject->Equatable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable @@ -117,78 +117,78 @@ - + -JSOneshotClosure - - -JSOneshotClosure +JSBigInt + + +JSBigInt - + -JSOneshotClosure->JSObject +JSBigInt->JSObject - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject - + -JSBigInt - - -JSBigInt +JSFunction + + +JSFunction - + -JSBigInt->JSObject +JSFunction->JSObject - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - - -JSFunction->JSObject + + +JSOneshotClosure->JSObject - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - + -JSClosure->JSObject +JSSymbol->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index c9c11960b..5beb7ddf0 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1bbd48cd1..035b52426 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%3 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index aef1da6d9..84c94c086 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%87 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 1f130e43f..49fea4664 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%91 @@ -78,18 +78,15 @@
- - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - + -JSString->ConstructibleFromJSValue +JSString->Equatable @@ -100,47 +97,50 @@ LosslessStringConvertible
- + JSString->LosslessStringConvertible - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - + -JSString->Equatable +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -JSString->ConvertibleToJSValue +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index f93f2062d..a6d05c9ce 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%129 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1b8ea432c..256ca8b92 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 61ac4b0bc..44fbaf768 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 3d1445f5a..75c836be5 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index ba5eb67ca..efe139058 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%67 @@ -67,30 +67,30 @@
- - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index d4467e004..47158752c 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%33 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index ee34adf88..8554cc495 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%37 @@ -67,75 +67,75 @@
- + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral @@ -146,7 +146,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index fa7d99659..ec8331e37 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index ed2a38d60..24d26ad45 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index bf6ac11de..eab8f4e16 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index d37666a5d..6e2144023 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 74cb6081f..680be755a 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 8848f65ce..75143e90d 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%71 +%53 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 4f83a7eb6..1937d92b6 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 68b0e8583..6af01bb0b 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index f4b7f5142..f072eb9d0 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 5dd6fa4f6..60ea7dab7 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 2d3470827..abdf4ae2d 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%9 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b668c2ce8..3027369b8 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index e0c9656d6..18f0ef263 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 7426157b4..ed31e02dc 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 3ebae3522..09b47ec22 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 6802f58f3..f0bfa473c 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index abde88ad2..817e05bc4 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 56acf0313..ec5bb510c 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 403bb7382..2633c97e1 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index dd9b3c5af..67f6376ce 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 06899d157..f6a1059c1 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 9111dbfaf..d9d724694 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 3142baeb5..9385ba32e 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 3258cbcf4..66910b50c 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 6dec0ce4d90007d0276021d193455ec048ae1ea7 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 9 Oct 2022 02:10:21 +0000 Subject: [PATCH 135/148] deploy: 60ca6b5fe7dbca882544398f0a05eb37dc226e33 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++---- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 ++++++------ JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 96 +++++++++--------- JSBridgedType/index.html | 46 ++++----- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 +++---- JSDate/index.html | 6 +- JSError/index.html | 10 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 114 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 76 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 ++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 436 insertions(+), 436 deletions(-) diff --git a/Array/index.html b/Array/index.html index 495563a1f..48654e52e 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 0f5833908..46569c9db 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index eb32ebe6a..7e89995db 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 7aed34c99..60aa0185e 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%29 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index f6f9b1b3b..3148a5c20 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%3 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 061441c0e..d7406fe14 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index ca173d1d8..8439a2edd 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 0534f9776..db2a1e4cc 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 0d0f728b7..134ea8618 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 0304332e4..ed07cb5cb 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index b7a790171..f6be15e31 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index aaf605d49..069a8ec1a 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 19e91f26d..1199c4555 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 7e5c0a5fc..8883ab1b5 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 31921edd1..2e0251094 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 14fc1944a..b294754b7 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%23 @@ -68,30 +68,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index f80b584e6..ae5fe357f 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 2095bd636..ae1e8bc5e 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%143 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index d73e0384b..1d15e7c90 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%9 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index df0e0d7e1..43af0325b 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%125 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 470e85c9c..b5ef15f88 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%35 @@ -67,34 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - + + @@ -106,56 +91,71 @@ - + JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - - -JSDate +JSTypedArray + + +JSTypedArray - + -JSDate->JSBridgedClass +JSTypedArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass + + +JSArray + + +JSArray + + + + + +JSArray->JSBridgedClass + + + @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 9db37a3ca..eec725275 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%111 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - + -JSBridgedType->CustomStringConvertible - - +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 6f09a4208..3f108d5f2 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%147 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 33e744f1c..af7f5b1aa 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%131 @@ -69,31 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 021e48a4e..367bc3121 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%165 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 99e035dbf..270e9ca85 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%81 @@ -87,7 +87,7 @@ Error
- + JSError->Error @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 28e5c16f8..c971b113e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%89 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 435441733..646961036 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 50c311a90..b33e95e12 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%93 @@ -82,100 +82,100 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + Hashable - -Hashable + +Hashable JSObject->Hashable - - + + - + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + + + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - + + @@ -187,7 +187,7 @@ - + JSSymbol->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 5beb7ddf0..1d6ddf2df 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 035b52426..208a349a2 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%153 @@ -77,7 +77,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -92,7 +92,7 @@ - + JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 84c94c086..0fa84f54f 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%139 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 49fea4664..2b8c2efd3 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%91 +%49 @@ -78,15 +78,18 @@
- - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -97,50 +100,47 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConstructibleFromJSValue - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index a6d05c9ce..141478709 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%61 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 256ca8b92..1784d5f0d 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 44fbaf768..6e3922148 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 75c836be5..614a9bf39 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index efe139058..b072e76ce 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%119 @@ -67,30 +67,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 47158752c..01b00b22d 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%171 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 8554cc495..05708d818 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%65 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +JSValueCompatible -ExpressibleByNilLiteral +JSValueCompatible - - -JSValue->ExpressibleByNilLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - + -JSValue->CustomStringConvertible +JSValue->Equatable - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByFloatLiteral - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral -ExpressibleByIntegerLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByStringLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index ec8331e37..61c9676cb 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 24d26ad45..1c1a72ed0 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index eab8f4e16..aea93ca2a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 6e2144023..a517fd644 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 680be755a..f970d1217 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 75143e90d..1fa2b3540 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%17 @@ -96,27 +96,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 1937d92b6..a58f8d3ef 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 6af01bb0b..aa00f1f58 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index f072eb9d0..6dd2102da 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 60ea7dab7..c631ebe17 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index abdf4ae2d..698385346 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%159 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 3027369b8..981a310d9 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 18f0ef263..1bb8a7f08 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index ed31e02dc..c73b1cd37 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 09b47ec22..e256e35be 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index f0bfa473c..6d53cc2ad 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 817e05bc4..818dd8452 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index ec5bb510c..1e61591b4 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 2633c97e1..1eabc855f 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 67f6376ce..7bec64af9 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index f6a1059c1..c2ebc9236 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d9d724694..f294293b2 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 9385ba32e..ccc296bfa 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 66910b50c..c7f7da3ca 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 80548430c29ee0c6312f912acfb76cbbb1fa7395 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Wed, 26 Oct 2022 01:29:09 +0000 Subject: [PATCH 136/148] deploy: 99c99657393bc39ae30ce7bd6b1c2165cc589e35 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 34 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 +++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 106 +++++++++--------- JSBridgedType/index.html | 46 ++++---- JSClosure/index.html | 38 +++---- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 10 +- JSError/index.html | 6 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 128 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 74 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 68 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 34 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 418 insertions(+), 418 deletions(-) diff --git a/Array/index.html b/Array/index.html index 48654e52e..ee1065591 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 46569c9db..445471e5c 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 7e89995db..2f448cae6 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 60aa0185e..f252a1df0 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%21 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 3148a5c20..b871cb339 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%9 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index d7406fe14..e704af061 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 8439a2edd..706ab45d1 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index db2a1e4cc..5894bb423 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 134ea8618..736b7381a 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index ed07cb5cb..8fd23db5a 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index f6be15e31..742aa5db8 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 069a8ec1a..a4f73b39c 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 1199c4555..6b5ec9d61 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 8883ab1b5..3298dd68d 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 2e0251094..9494910c1 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b294754b7..2e5b57340 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%87 @@ -68,30 +68,30 @@ + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index ae5fe357f..3ab7e8d07 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ae1e8bc5e..ebe37504a 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%53 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 1d15e7c90..add62050d 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%45 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended - + JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 43af0325b..fb30766d9 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%165 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index b5ef15f88..f94706c08 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%73 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - - -JSPromise - - -JSPromise + + +JSError + + +JSError - - -JSPromise->JSBridgedClass - - + + +JSError->JSBridgedClass + + - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSArray - - -JSArray +JSPromise + + +JSPromise - - -JSArray->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index eec725275..90024c532 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%117 @@ -67,6 +67,18 @@
+ + +CustomStringConvertible + +CustomStringConvertible + + + +JSBridgedType->CustomStringConvertible + + + JSValueCompatible @@ -74,37 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 3f108d5f2..d8a003ab3 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%3 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index af7f5b1aa..e7e9dae93 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%129 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -90,7 +90,7 @@ - + JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 367bc3121..4358ae82c 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%39 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 270e9ca85..da720ee7e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%93 @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index c971b113e..5a0483b31 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%113 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 646961036..cce79d8ba 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index b33e95e12..2317250b5 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%143 @@ -81,101 +81,101 @@
- - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + @@ -187,7 +187,7 @@ - + JSSymbol->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 1d6ddf2df..ae1f857f7 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 208a349a2..195b715c3 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%15 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 0fa84f54f..4323b89a8 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%171 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 2b8c2efd3..e139738f3 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%101 @@ -78,69 +78,69 @@
+ + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue - + JSString->ConvertibleToJSValue - - + + - + LosslessStringConvertible - -LosslessStringConvertible + +LosslessStringConvertible - + JSString->LosslessStringConvertible - - + + - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue JSString->ConstructibleFromJSValue - - + + - + Equatable - -Equatable + +Equatable JSString->Equatable - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 141478709..f0156266e 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%125 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1784d5f0d..d52911dbc 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 6e3922148..d5fdf7737 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 614a9bf39..20ef06dae 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b072e76ce..f8d1c99a9 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%137 @@ -77,7 +77,7 @@
- + JSTypedArray->JSBridgedClass @@ -89,7 +89,7 @@ ExpressibleByArrayLiteral - + JSTypedArray->ExpressibleByArrayLiteral @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 01b00b22d..ee8a29454 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%161 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 05708d818..c35fa8435 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%57 @@ -67,15 +67,15 @@
- + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByStringLiteral @@ -86,7 +86,7 @@ CustomStringConvertible
- + JSValue->CustomStringConvertible @@ -98,56 +98,56 @@ Equatable - + JSValue->Equatable - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 61c9676cb..01ed48c44 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 1c1a72ed0..c355df5d6 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index aea93ca2a..ad58eb5f2 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index a517fd644..c59bcec56 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index f970d1217..46c321c05 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 1fa2b3540..89137c46a 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%27 @@ -103,7 +103,7 @@ SerialExecutor
- + JavaScriptEventLoop->SerialExecutor @@ -115,7 +115,7 @@ @unchecked Sendable - + JavaScriptEventLoop->@unchecked Sendable @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index a58f8d3ef..123463d19 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index aa00f1f58..98c9032a0 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 6dd2102da..ec20431f9 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index c631ebe17..2f702e4b4 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 698385346..f1cb49dc4 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%33 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -TypedArrayElement->ConstructibleFromJSValue + + +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -TypedArrayElement->ConvertibleToJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 981a310d9..58d76f8a7 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 1bb8a7f08..2373cfac8 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index c73b1cd37..534c629cf 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index e256e35be..57091d8c8 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 6d53cc2ad..e9d9280a0 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 818dd8452..6a8ba13b2 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 1e61591b4..b9aaf5327 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 1eabc855f..10b2948fe 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 7bec64af9..d797e3819 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index c2ebc9236..ffdd98144 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index f294293b2..7264d8261 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index ccc296bfa..4e9ce42d9 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index c7f7da3ca..79461da2f 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 9d43e9b32c332b330e8a19e0fbb02a3e115b164c Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 19 Dec 2022 15:04:41 +0000 Subject: [PATCH 137/148] deploy: dbf7a880cb7d119457f6784d367b6403bdd60fb5 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 12 +-- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 40 ++++---- JSBridgedType/index.html | 38 +++---- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 34 +++---- JSDate/index.html | 36 +++---- JSError/index.html | 40 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 118 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 44 ++++---- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 6 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 344 insertions(+), 344 deletions(-) diff --git a/Array/index.html b/Array/index.html index ee1065591..a5e4eb702 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 445471e5c..7e88964c9 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 2f448cae6..bff592e77 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index f252a1df0..e81b7c295 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%123 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b871cb339..744edca88 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%147 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index e704af061..90df86fc0 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 706ab45d1..758969013 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 5894bb423..c4560cfaf 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 736b7381a..29afd5d9c 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 8fd23db5a..aadc95803 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 742aa5db8..bf69f41bc 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index a4f73b39c..228b0dbf9 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 6b5ec9d61..cd0ed07a8 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 3298dd68d..e94210634 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 9494910c1..cee9a6fef 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 2e5b57340..ec0cf5b68 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%69 @@ -75,7 +75,7 @@ RandomAccessCollection
- + JSArray->RandomAccessCollection @@ -90,7 +90,7 @@ - + JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 3ab7e8d07..48aed6daa 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ebe37504a..0274bd106 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%25 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index add62050d..9c79fed64 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%115 @@ -78,7 +78,7 @@
- + JSBigInt->JSBigIntExtended @@ -93,13 +93,13 @@ - + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index fb30766d9..2fa147bfc 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%3 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f94706c08..f38db86e7 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%153 @@ -76,7 +76,7 @@
- + JSBridgedClass->JSBridgedType @@ -96,18 +96,18 @@ - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -121,23 +121,23 @@ - + JSDate->JSBridgedClass - + -JSTypedArray - +JSArray + -JSTypedArray +JSArray - - -JSTypedArray->JSBridgedClass + + +JSArray->JSBridgedClass @@ -151,7 +151,7 @@ - + JSPromise->JSBridgedClass @@ -276,7 +276,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 90024c532..ccbb2af58 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%167 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d8a003ab3..1170e2a94 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%35 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index e7e9dae93..16c1a8df3 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%87 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 4358ae82c..1fa24ac84 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%51 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index da720ee7e..2c5cfdb89 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%57 @@ -68,15 +68,18 @@
- - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - - -JSError->CustomStringConvertible + + + +JSError->JSBridgedClass @@ -87,23 +90,20 @@ Error - + JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - + -JSError->JSBridgedClass +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 5a0483b31..3c1030fa9 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%21 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index cce79d8ba..0ddc57fb9 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 2317250b5..a38884c4a 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%129 @@ -81,84 +81,84 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + Hashable - -Hashable + +Hashable JSObject->Hashable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - - - - -JSClosure - - -JSClosure - + + + + +Equatable + +Equatable - - -JSClosure->JSObject - - + + +JSObject->Equatable + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject + + + + + +JSSymbol + + +JSSymbol + + + + + +JSSymbol->JSObject @@ -172,23 +172,23 @@ - + JSFunction->JSObject - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ae1f857f7..aa2552011 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 195b715c3..9f03e3736 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%29 @@ -67,33 +67,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4323b89a8..9cba403c4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%65 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index e139738f3..203494c21 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%75 @@ -100,7 +100,7 @@
- + JSString->ConvertibleToJSValue @@ -112,35 +112,35 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +Equatable -ConstructibleFromJSValue - +Equatable - - - -JSString->ConstructibleFromJSValue + + +JSString->Equatable - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index f0156266e..385a15c4f 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%47 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index d52911dbc..c4bc7c857 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index d5fdf7737..4dfa5c68f 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 20ef06dae..1c1d48fae 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f8d1c99a9..dc70fc521 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%9 @@ -290,7 +290,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index ee8a29454..deabee428 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%111 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index c35fa8435..1064a0a71 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%95 @@ -67,87 +67,87 @@
- + -ExpressibleByStringLiteral +ExpressibleByNilLiteral -ExpressibleByStringLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByNilLiteral - + -CustomStringConvertible +ExpressibleByFloatLiteral -CustomStringConvertible +ExpressibleByFloatLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByFloatLiteral - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +Equatable -ExpressibleByFloatLiteral +Equatable - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - + -JSValue->ExpressibleByIntegerLiteral +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByIntegerLiteral -JSValueCompatible +ExpressibleByIntegerLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 01ed48c44..7d726a4e2 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index c355df5d6..365425987 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ad58eb5f2..9de2cb53d 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index c59bcec56..078e23a98 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 46c321c05..6f193e265 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 89137c46a..1f092cc62 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%41 @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 123463d19..44de1413b 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 98c9032a0..043246d74 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index ec20431f9..e9d64f01c 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 2f702e4b4..8318b8a99 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index f1cb49dc4..781d416b7 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%15 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 58d76f8a7..e26c797aa 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 2373cfac8..e384f7bbb 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 534c629cf..1b964de85 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 57091d8c8..fd043dc46 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index e9d9280a0..c786f0a68 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 6a8ba13b2..9b9090d7c 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index b9aaf5327..ea0d0b522 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 10b2948fe..072308259 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index d797e3819..32b6b245d 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index ffdd98144..1e06f93f1 100644 --- a/index.html +++ b/index.html @@ -548,7 +548,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 7264d8261..50fdec98f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 4e9ce42d9..38f782de2 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 79461da2f..bc34ca36e 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 9b06e33349e633826b74986538e3c76910269687 Mon Sep 17 00:00:00 2001 From: j-f1 Date: Sat, 24 Dec 2022 15:47:05 +0000 Subject: [PATCH 138/148] deploy: 59e7b65d1b95db7cfcb9e53c43995d4a2fca85b9 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 38 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 ++++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 12 +-- JSBigIntExtended/index.html | 10 +-- JSBridgedClass/index.html | 103 +++++++++++----------- JSBridgedType/index.html | 30 +++---- JSClosure/index.html | 38 ++++---- JSClosureProtocol/index.html | 44 ++++----- JSDate/index.html | 38 ++++---- JSError/index.html | 10 +-- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 84 +++++++++--------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 68 +++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 41 ++++----- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 88 +++++++++--------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 7 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 433 insertions(+), 430 deletions(-) diff --git a/Array/index.html b/Array/index.html index a5e4eb702..4949f00f3 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 7e88964c9..4ac30852f 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index bff592e77..50946e73d 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index e81b7c295..9592701ff 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%77 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 744edca88..b75f22dbc 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%105 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 90df86fc0..3367a2653 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 758969013..de1faf113 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index c4560cfaf..51921af8a 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 29afd5d9c..479e195ac 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index aadc95803..c801258be 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index bf69f41bc..e4d3c51a2 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 228b0dbf9..2d4f245c5 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index cd0ed07a8..e7caacb3d 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index e94210634..1d80a2d1b 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index cee9a6fef..a57858c01 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index ec0cf5b68..731ba1686 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%157 @@ -68,30 +68,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 48aed6daa..01decba40 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 0274bd106..493af4b37 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%83 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 9c79fed64..747f666f7 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%97 @@ -78,7 +78,7 @@
- + JSBigInt->JSBigIntExtended @@ -93,13 +93,13 @@ - + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 2fa147bfc..2e7df7d67 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%41 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f38db86e7..4ee2aa07f 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%11 @@ -67,35 +67,50 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSError - +JSDate + -JSError +JSDate - - -JSError->JSBridgedClass + + +JSDate->JSBridgedClass + + +JSPromise + + +JSPromise + + + + + +JSPromise->JSBridgedClass + + + JSTypedArray @@ -106,56 +121,41 @@ - + JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSArray - - -JSArray +JSError + + +JSError - - -JSArray->JSBridgedClass + + +JSError->JSBridgedClass - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - - @@ -194,8 +194,9 @@

Types Conforming to JSBridged​Class

A wrapper around the JavaScript Promise class

JSTypedArray
-

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) -classes] that exposes their properties in a type-safe way.

+

A wrapper around all JavaScript TypedArray +classes +that exposes their properties in a type-safe way.

@@ -276,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index ccbb2af58..9fc5b7531 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%47 @@ -67,27 +67,27 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 1170e2a94..68ff63139 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%55 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 16c1a8df3..b26280dd9 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%111 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 1fa24ac84..807e1a085 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%87 @@ -72,30 +72,30 @@
- - -Comparable - -Comparable - - - -JSDate->Comparable - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSDate->JSBridgedClass + + + + + +Comparable + +Comparable + + + +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 2c5cfdb89..041b9c6c9 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%3 @@ -78,7 +78,7 @@
- + JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3c1030fa9..d6ec393d9 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%21 +%93 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 0ddc57fb9..b1d945084 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index a38884c4a..e466e3835 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%135 @@ -81,54 +81,54 @@
- + -Hashable +CustomStringConvertible -Hashable +CustomStringConvertible - - -JSObject->Hashable + + +JSObject->CustomStringConvertible - + -CustomStringConvertible +Equatable -CustomStringConvertible +Equatable - - -JSObject->CustomStringConvertible + + +JSObject->Equatable - + -Equatable +Hashable -Equatable +Hashable - - -JSObject->Equatable + + +JSObject->Hashable - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - + -JSOneshotClosure->JSObject +JSSymbol->JSObject @@ -142,38 +142,38 @@ - + JSBigInt->JSObject - + -JSSymbol - +JSFunction + -JSSymbol +JSFunction - - -JSSymbol->JSObject + + +JSFunction->JSObject - + -JSFunction - +JSOneshotClosure + -JSFunction +JSOneshotClosure - + -JSFunction->JSObject +JSOneshotClosure->JSObject @@ -187,7 +187,7 @@ - + JSClosure->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index aa2552011..604e299a0 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 9f03e3736..556d0a57b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%25 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 9cba403c4..8890097e4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%65 +%37 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 203494c21..0d16ef15b 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%123 @@ -78,69 +78,69 @@
- + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - - -JSString->ExpressibleByStringLiteral + + +JSString->LosslessStringConvertible - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue - + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - - -JSString->LosslessStringConvertible + + +JSString->Equatable - + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSString->Equatable + + +JSString->ExpressibleByStringLiteral - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -JSString->ConstructibleFromJSValue +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 385a15c4f..928863cbd 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%119 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index c4bc7c857..db7c37648 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 4dfa5c68f..ac3eb7103 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 1c1d48fae..25fcb4dca 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index dc70fc521..f689b740d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -40,8 +40,9 @@

public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement  

-

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) -classes] that exposes their properties in a type-safe way.

+

A wrapper around all JavaScript TypedArray +classes +that exposes their properties in a type-safe way.

@@ -52,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%163 @@ -67,30 +68,30 @@ - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral - - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass @@ -290,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index deabee428..1a44f0988 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%153 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 1064a0a71..98f034563 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%61 @@ -67,87 +67,87 @@
- + -ExpressibleByNilLiteral +ExpressibleByFloatLiteral -ExpressibleByNilLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -JSValueCompatible +ExpressibleByNilLiteral -JSValueCompatible +ExpressibleByNilLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByNilLiteral - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 7d726a4e2..4dd639daa 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 365425987..aaefd2115 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 9de2cb53d..1a768528e 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 078e23a98..43ca2137b 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 6f193e265..15fec2600 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 1f092cc62..2de09af7d 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%169 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 44de1413b..cd5e83c26 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 043246d74..1b700bc3c 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index e9d64f01c..194146ac3 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 8318b8a99..30bbe84d4 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 781d416b7..9dd84699b 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%31 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index e26c797aa..8614af86f 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index e384f7bbb..8e1ba82da 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 1b964de85..55a44d075 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index fd043dc46..8ffc87629 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index c786f0a68..f0acf54b7 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 9b9090d7c..cc7cb256f 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index ea0d0b522..e47c06603 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 072308259..40be898cb 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 32b6b245d..dc45622e6 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 1e06f93f1..37208bed6 100644 --- a/index.html +++ b/index.html @@ -125,8 +125,9 @@

Classes

-

A wrapper around all [JavaScript TypedArray(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) -classes] that exposes their properties in a type-safe way.

+

A wrapper around all JavaScript TypedArray +classes +that exposes their properties in a type-safe way.

@@ -548,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 50fdec98f..3778ada9f 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 38f782de2..0b5ff6606 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index bc34ca36e..7a64ee248 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 9f96899be92906d97ac6ef9f6a19975f200957ff Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 13 Mar 2023 12:32:12 +0000 Subject: [PATCH 139/148] deploy: 758cb4efe29c26223c17a529538f061f785d60b9 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 6 +- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 +-- Int16/index.html | 16 +-- Int32/index.html | 16 +-- Int64/index.html | 2 +- Int8/index.html | 16 +-- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 ++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 92 +++++++------- JSBridgedType/index.html | 30 ++--- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 36 +++--- JSDate/index.html | 36 +++--- JSError/index.html | 40 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 144 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 10 +- JSPromise/index.html | 6 +- JSString/index.html | 56 ++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 36 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 76 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 18 +-- UInt16/index.html | 16 +-- UInt32/index.html | 16 +-- UInt64/index.html | 2 +- UInt8/index.html | 16 +-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 464 insertions(+), 464 deletions(-) diff --git a/Array/index.html b/Array/index.html index 4949f00f3..565aafb83 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 4ac30852f..77d7a28cc 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 50946e73d..0b5df5feb 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 9592701ff..c127c0e0a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%117 @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index b75f22dbc..9c4f6a0ca 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%97 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 3367a2653..6546ddc0b 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index de1faf113..a174d70d1 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 51921af8a..bde139eeb 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 479e195ac..36e3baf6d 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index c801258be..10ea02af2 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e4d3c51a2..5c529ca29 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 2d4f245c5..37c07609a 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index e7caacb3d..e38984c65 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 1d80a2d1b..45fea5736 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index a57858c01..744603b5b 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 731ba1686..4b3e6b049 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%23 @@ -78,7 +78,7 @@
- + JSArray->JSBridgedClass @@ -90,7 +90,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 01decba40..e8d808f85 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 493af4b37..ce4d95a9b 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%127 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 747f666f7..13cb86a7a 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%143 JSBigInt - -JSBigInt + +JSBigInt + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + + - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended JSBigInt->JSBigIntExtended - - - - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 2e7df7d67..74d71d4fe 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%87 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 4ee2aa07f..12ace2405 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%67 @@ -67,77 +67,62 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - + -JSArray - +JSTypedArray + -JSArray +JSTypedArray - - -JSArray->JSBridgedClass + + +JSTypedArray->JSBridgedClass @@ -151,11 +136,26 @@ - + JSError->JSBridgedClass + + +JSDate + + +JSDate + + + + + +JSDate->JSBridgedClass + + + @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 9fc5b7531..44402437a 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%167 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 68ff63139..d7f6397c3 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%47 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index b26280dd9..00887796a 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%9 @@ -75,38 +75,38 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 807e1a085..f73c2b9b3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%81 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 041b9c6c9..b33dc05ea 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%103 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index d6ec393d9..3dfbf8ce1 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%59 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index b1d945084..3c295258b 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index e466e3835..b37b8b21e 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%135 +%29 @@ -81,114 +81,114 @@
+ + +Hashable + +Hashable + + + +JSObject->Hashable + + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - - -Hashable - -Hashable + + +JSClosure + + +JSClosure + - - -JSObject->Hashable - - + + + +JSClosure->JSObject + + - + JSSymbol - - -JSSymbol + + +JSSymbol - + JSSymbol->JSObject - - + + - - -JSBigInt - - -JSBigInt + + +JSOneshotClosure + + +JSOneshotClosure - - -JSBigInt->JSObject - - + + +JSOneshotClosure->JSObject + + - + JSFunction - - -JSFunction + + +JSFunction JSFunction->JSObject - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - + + - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - - -JSClosure->JSObject + + +JSBigInt->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 604e299a0..3dc54741a 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 556d0a57b..1c62a15cd 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%111 @@ -77,7 +77,7 @@
- + JSOneshotClosure->JSClosureProtocol @@ -92,7 +92,7 @@ - + JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 8890097e4..e2a227916 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%123 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0d16ef15b..9482c331f 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%131 @@ -85,23 +85,20 @@ LosslessStringConvertible
- + JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - +ExpressibleByStringLiteral - - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -112,35 +109,38 @@ Equatable - + JSString->Equatable - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - - -JSString->ConvertibleToJSValue + + +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 928863cbd..cab6e1c44 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%93 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index db7c37648..a7a2ff8cf 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index ac3eb7103..051dbdd72 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 25fcb4dca..708fe9b20 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index f689b740d..b4e499c22 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%17 @@ -68,30 +68,30 @@
- - -ExpressibleByArrayLiteral + + +JSBridgedClass + -ExpressibleByArrayLiteral +JSBridgedClass + - + + -JSTypedArray->ExpressibleByArrayLiteral +JSTypedArray->JSBridgedClass - - -JSBridgedClass - + + +ExpressibleByArrayLiteral -JSBridgedClass - +ExpressibleByArrayLiteral - - + -JSTypedArray->JSBridgedClass +JSTypedArray->ExpressibleByArrayLiteral @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 1a44f0988..688179aa4 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%63 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 98f034563..81242bac7 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%151 @@ -67,51 +67,51 @@
- + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - + -JSValue->ExpressibleByStringLiteral +JSValue->Equatable - + -ExpressibleByIntegerLiteral +CustomStringConvertible -ExpressibleByIntegerLiteral +CustomStringConvertible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->CustomStringConvertible - + -Equatable +ExpressibleByFloatLiteral -Equatable +ExpressibleByFloatLiteral - + -JSValue->Equatable +JSValue->ExpressibleByFloatLiteral @@ -122,32 +122,32 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByNilLiteral -CustomStringConvertible +ExpressibleByNilLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByNilLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 4dd639daa..dbb7114a9 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index aaefd2115..132070e39 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 1a768528e..dea76dbb9 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 43ca2137b..f5485c2ba 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 15fec2600..69a72ed03 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 2de09af7d..7154045ec 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%3 @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index cd5e83c26..6c6f1f603 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 1b700bc3c..ae8885548 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 194146ac3..352f759cb 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 30bbe84d4..7bb614df4 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 9dd84699b..ba4d998d1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%53 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 8614af86f..ea877a6ec 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 8e1ba82da..95c14b993 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 55a44d075..e4f4ee2a1 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 8ffc87629..26a5041a6 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index f0acf54b7..85e7ae182 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index cc7cb256f..07dccb300 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index e47c06603..266d7e72c 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 40be898cb..9d03e5fc0 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index dc45622e6..f4f8af47a 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 37208bed6..35647de47 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 3778ada9f..64ad32197 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 0b5ff6606..427ccc0af 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 7a64ee248..0edf0494e 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From bd499eeb254e3a6b556795e48e645f02dcc10226 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 13 Mar 2023 14:03:55 +0000 Subject: [PATCH 140/148] deploy: 6cf6d35fc03bfb108cd19844831b5c21a29df77b --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++--- ConvertibleToJSValue/index.html | 34 +++--- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 82 ++++++------- JSBridgedType/index.html | 38 +++--- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 10 +- JSDate/index.html | 10 +- JSError/index.html | 50 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 136 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 +++--- JSPromise/index.html | 6 +- JSString/index.html | 60 +++++----- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 80 ++++++------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 426 insertions(+), 426 deletions(-) diff --git a/Array/index.html b/Array/index.html index 565aafb83..b9362e695 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 77d7a28cc..6338aafd9 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 0b5df5feb..842c78d57 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index c127c0e0a..6e3ac4994 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%89 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 9c4f6a0ca..f8b9a862d 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%97 +%75 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 6546ddc0b..ae2fdfa7a 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index a174d70d1..529409062 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index bde139eeb..f584aa693 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 36e3baf6d..9654ee518 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 10ea02af2..18225091a 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 5c529ca29..963e97ea3 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 37c07609a..4994bb432 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index e38984c65..7912debeb 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 45fea5736..0f2d7c74a 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 744603b5b..b83ec1ad9 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 4b3e6b049..bae1020eb 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%43 @@ -68,30 +68,30 @@ - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection - - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index e8d808f85..6bce6ebc8 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index ce4d95a9b..9c64c8e1f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%171 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 13cb86a7a..a4eef15ef 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%81 @@ -78,7 +78,7 @@
- + JSBigInt->JSObject @@ -93,7 +93,7 @@ - + JSBigInt->JSBigIntExtended @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 74d71d4fe..fab5cfdfd 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%87 +%165 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 12ace2405..05fb5c40a 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%49 @@ -81,78 +81,78 @@
- + -JSArray - - -JSArray +JSDate + + +JSDate - + -JSArray->JSBridgedClass +JSDate->JSBridgedClass - + -JSPromise - +JSError + -JSPromise +JSError - - -JSPromise->JSBridgedClass + + +JSError->JSBridgedClass - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - + -JSError - - -JSError +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass + + +JSTypedArray->JSBridgedClass - + -JSDate - - -JSDate +JSArray + + +JSArray - - -JSDate->JSBridgedClass + + +JSArray->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 44402437a..ab540f0a4 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%129 @@ -68,43 +68,43 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSBridgedType->CustomStringConvertible - - + + - + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSBridgedType->JSValueCompatible - - + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index d7f6397c3..f038fb740 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%47 +%159 @@ -80,33 +80,33 @@
- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 00887796a..0c1b19cf2 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%67 @@ -75,7 +75,7 @@ JSValueCompatible
- + JSClosureProtocol->JSValueCompatible @@ -105,7 +105,7 @@ - + JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index f73c2b9b3..e3ca49249 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%37 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index b33dc05ea..cc6793a5d 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%117 @@ -68,42 +68,42 @@
- + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible - - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error - - -CustomStringConvertible + + +JSBridgedClass + -CustomStringConvertible +JSBridgedClass + - + + -JSError->CustomStringConvertible +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 3dfbf8ce1..36d715d0e 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%125 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 3c295258b..933ec6a5d 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index b37b8b21e..13128776d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%9 @@ -81,6 +81,30 @@
+ + +Equatable + +Equatable + + + +JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible + + + Hashable @@ -88,107 +112,83 @@ Hashable - + JSObject->Hashable - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - - -JSClosure->JSObject + + +JSBigInt->JSObject - - -JSSymbol - - -JSSymbol + + +JSClosure + + +JSClosure - - -JSSymbol->JSObject - - + + +JSClosure->JSObject + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSBigInt - - -JSBigInt +JSSymbol + + +JSSymbol - - -JSBigInt->JSObject + + +JSSymbol->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 3dc54741a..f65de8a1d 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 1c62a15cd..9a176a181 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -67,33 +67,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index e2a227916..74d35d6af 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%123 +%63 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 9482c331f..666a89fe0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%95 @@ -78,39 +78,42 @@
- + -LosslessStringConvertible +Equatable -LosslessStringConvertible +Equatable - + -JSString->LosslessStringConvertible +JSString->Equatable - + -ExpressibleByStringLiteral +LosslessStringConvertible -ExpressibleByStringLiteral +LosslessStringConvertible - + -JSString->ExpressibleByStringLiteral +JSString->LosslessStringConvertible - - -Equatable + + +ConstructibleFromJSValue + -Equatable +ConstructibleFromJSValue + - - -JSString->Equatable + + + +JSString->ConstructibleFromJSValue @@ -129,18 +132,15 @@ - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - +ExpressibleByStringLiteral - - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index cab6e1c44..ec026c0b4 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%107 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index a7a2ff8cf..400a940b6 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 051dbdd72..0620c4f93 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 708fe9b20..0df270959 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b4e499c22..b291e6b75 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%27 @@ -68,30 +68,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 688179aa4..108ca0d13 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%33 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 81242bac7..b19a68eea 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%143 @@ -67,75 +67,75 @@
- + -ExpressibleByIntegerLiteral +Equatable -ExpressibleByIntegerLiteral +Equatable - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->Equatable - + -Equatable +CustomStringConvertible -Equatable +CustomStringConvertible - - -JSValue->Equatable + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral -ExpressibleByFloatLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible @@ -146,7 +146,7 @@ ExpressibleByNilLiteral - + JSValue->ExpressibleByNilLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index dbb7114a9..90cac3738 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 132070e39..f78b88b08 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index dea76dbb9..54e169a62 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index f5485c2ba..ae348cc8e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 69a72ed03..80c6b4ce9 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 7154045ec..5922a5513 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -96,27 +96,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 6c6f1f603..e8d47e2c4 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index ae8885548..1bc00af6a 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 352f759cb..92523af7c 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 7bb614df4..9a8d7887d 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ba4d998d1..ceb3a7ddd 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%137 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index ea877a6ec..b3b16e995 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 95c14b993..3796e61f7 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index e4f4ee2a1..5cff81b52 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 26a5041a6..cfec66580 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 85e7ae182..9cb80d91b 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 07dccb300..7f3458b45 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 266d7e72c..53692bf0f 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9d03e5fc0..a1da68aa3 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index f4f8af47a..9a77d4c62 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 35647de47..b0e46ebea 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 64ad32197..b1063561a 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 427ccc0af..e9efaa87a 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 0edf0494e..6cc2cb74d 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 1ce389da828fe6f0710011f4803849a763cf0bac Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 13 Mar 2023 14:17:19 +0000 Subject: [PATCH 141/148] deploy: 096584bb6959f16d97daf3ebf52039f98c36fdbf --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 36 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 104 +++++++++---------- JSBridgedType/index.html | 50 ++++----- JSClosure/index.html | 10 +- JSClosureProtocol/index.html | 46 ++++----- JSDate/index.html | 36 +++---- JSError/index.html | 32 +++--- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 120 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 +++---- JSPromise/index.html | 6 +- JSString/index.html | 74 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 68 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 26 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 414 insertions(+), 414 deletions(-) diff --git a/Array/index.html b/Array/index.html index b9362e695..4f69bbc2b 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 6338aafd9..8bec479c7 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 842c78d57..fd20e4042 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index 6e3ac4994..c0188c0bd 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%45 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index f8b9a862d..89a0c0f88 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%39 @@ -76,7 +76,7 @@
- + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index ae2fdfa7a..d36d9ce74 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 529409062..f220a18cf 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index f584aa693..271e04dff 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 9654ee518..7f9d1603e 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 18225091a..96c9063cf 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 963e97ea3..e6800faaf 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 4994bb432..0f667cbcf 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 7912debeb..a48ece243 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 0f2d7c74a..b02bef9fc 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index b83ec1ad9..60b07a366 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index bae1020eb..b32988d93 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%3 @@ -68,30 +68,30 @@
- - -RandomAccessCollection + + +JSBridgedClass + -RandomAccessCollection +JSBridgedClass + - + + -JSArray->RandomAccessCollection +JSArray->JSBridgedClass - - -JSBridgedClass - + + +RandomAccessCollection -JSBridgedClass - +RandomAccessCollection - - + -JSArray->JSBridgedClass +JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 6bce6ebc8..bf7137769 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 9c64c8e1f..768b27a3c 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%171 +%139 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index a4eef15ef..033e08d43 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%149 @@ -78,7 +78,7 @@
- + JSBigInt->JSObject @@ -99,7 +99,7 @@ - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index fab5cfdfd..227641d55 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%169 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 05fb5c40a..de7d3a715 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%89 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass - + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + + -JSError - - -JSError +JSArray + + +JSArray - - -JSError->JSBridgedClass + + +JSArray->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - -JSPromise->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - -JSTypedArray->JSBridgedClass +JSPromise->JSBridgedClass - + -JSArray - - -JSArray +JSDate + + +JSDate - - -JSArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index ab540f0a4..91ad74520 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%61 @@ -67,44 +67,44 @@
- + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - - -JSBridgedType->JSValueCompatible - - + + +JSBridgedType->CustomStringConvertible + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index f038fb740..c316648e3 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%143 @@ -90,7 +90,7 @@
- + JSClosure->JSObject @@ -105,7 +105,7 @@ - + JSClosure->JSClosureProtocol @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 0c1b19cf2..1dc1cba93 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%31 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + JSClosure - - -JSClosure + + +JSClosure - + JSClosure->JSClosureProtocol - - + + - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSClosureProtocol - - + + @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index e3ca49249..abd39097d 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%111 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index cc6793a5d..0aa722f32 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%103 @@ -68,27 +68,27 @@
- + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - + -Error +CustomStringConvertible -Error +CustomStringConvertible - - -JSError->Error + + +JSError->CustomStringConvertible @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 36d715d0e..f7ccd5105 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%117 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 933ec6a5d..36ef03098 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 13128776d..97ba4ac3d 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%13 @@ -81,114 +81,114 @@
- - -Equatable - -Equatable - - - -JSObject->Equatable - - - - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + - + JSBigInt - - -JSBigInt + + +JSBigInt JSBigInt->JSObject - - + + - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - + + - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - + -JSSymbol->JSObject +JSClosure->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index f65de8a1d..fa4ee3c3b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 9a176a181..5ee05779c 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%133 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 74d35d6af..4185ce8d4 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%69 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 666a89fe0..0f2daf582 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%157 @@ -78,15 +78,18 @@
- - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - - -JSString->Equatable + + + +JSString->ConvertibleToJSValue @@ -97,50 +100,47 @@ LosslessStringConvertible - + JSString->LosslessStringConvertible - - -ConstructibleFromJSValue - + + +ExpressibleByStringLiteral -ConstructibleFromJSValue - - +ExpressibleByStringLiteral - - -JSString->ConstructibleFromJSValue + + +JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - - -JSString->ConvertibleToJSValue + + +JSString->Equatable - - -ExpressibleByStringLiteral + + +ConstructibleFromJSValue + -ExpressibleByStringLiteral +ConstructibleFromJSValue + - + + -JSString->ExpressibleByStringLiteral +JSString->ConstructibleFromJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index ec026c0b4..619f0e9a4 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%9 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 400a940b6..614d46acb 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 0620c4f93..0af1ff27a 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 0df270959..2fc26806d 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index b291e6b75..4afd85361 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%121 @@ -75,7 +75,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -90,7 +90,7 @@ - + JSTypedArray->JSBridgedClass @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 108ca0d13..62265d78c 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%57 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index b19a68eea..6a5af69df 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%73 @@ -67,51 +67,51 @@
- + -Equatable +ExpressibleByStringLiteral -Equatable +ExpressibleByStringLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByStringLiteral - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSValue->ExpressibleByStringLiteral + + +JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral @@ -122,7 +122,7 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral @@ -134,20 +134,20 @@ JSValueCompatible - + JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +CustomStringConvertible -ExpressibleByNilLiteral +CustomStringConvertible - + -JSValue->ExpressibleByNilLiteral +JSValue->CustomStringConvertible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 90cac3738..da11aef62 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index f78b88b08..216d2d253 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 54e169a62..2430c53f3 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index ae348cc8e..46dafebef 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 80c6b4ce9..5cb2b6d5c 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 5922a5513..b4fe8253f 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%51 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - + -JavaScriptEventLoop->SerialExecutor +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - + -JavaScriptEventLoop->@unchecked Sendable +JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index e8d47e2c4..e5601e339 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 1bc00af6a..0b4b9d1c8 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 92523af7c..9310daa6b 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 9a8d7887d..080c51a90 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index ceb3a7ddd..832d7f0a6 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%127 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b3b16e995..c15397de0 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 3796e61f7..4525c9b21 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 5cff81b52..334eafd63 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index cfec66580..60f5bc014 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 9cb80d91b..94962ffec 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 7f3458b45..0f07d5220 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 53692bf0f..0b5c535e8 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index a1da68aa3..9e856474a 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 9a77d4c62..e8671518e 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index b0e46ebea..cc12e5fcb 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index b1063561a..d81e595cf 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index e9efaa87a..c7da99964 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 6cc2cb74d..583afdc19 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From 28d7374b5818a519a0204bfc42581a2bf4de1409 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 28 Apr 2023 09:33:30 +0000 Subject: [PATCH 142/148] deploy: 5b296e750c2fab193d775046ea328d3b6e01702d --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++---- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 +++++----- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 78 ++++++------- JSBridgedType/index.html | 50 ++++----- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 34 +++--- JSDate/index.html | 10 +- JSError/index.html | 10 +- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 128 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 86 +++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 2 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 66 +++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 ++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 6 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 371 insertions(+), 371 deletions(-) diff --git a/Array/index.html b/Array/index.html index 4f69bbc2b..c2136368e 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 8bec479c7..990c5f423 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index fd20e4042..bffd7d07f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index c0188c0bd..ea32378b2 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%139 @@ -76,7 +76,7 @@ - + JSString->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 89a0c0f88..f66f2de5e 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%39 +%83 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index d36d9ce74..96425546b 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index f220a18cf..2dececb0c 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 271e04dff..33709815c 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index 7f9d1603e..f740855e0 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 96c9063cf..b9732cfa8 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index e6800faaf..303899194 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 0f667cbcf..e546d4e10 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index a48ece243..21485b481 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index b02bef9fc..f3252378e 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 60b07a366..640ee4354 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index b32988d93..8643377c4 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%153 @@ -68,30 +68,30 @@
+ + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index bf7137769..41d5f1d2a 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 768b27a3c..3e2eb9c04 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%89 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 033e08d43..8bd49bb31 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%149 +%55 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 227641d55..6c4526c1a 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%3 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index de7d3a715..29baf6685 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%35 @@ -67,47 +67,32 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - -JSBridgedClass->JSBridgedType - - - - - -JSError - - -JSError - - - - -JSError->JSBridgedClass - - +JSBridgedClass->JSBridgedType + + - + -JSTypedArray - - -JSTypedArray +JSDate + + +JSDate - - -JSTypedArray->JSBridgedClass + + +JSDate->JSBridgedClass @@ -126,6 +111,21 @@ + + +JSTypedArray + + +JSTypedArray + + + + + +JSTypedArray->JSBridgedClass + + + JSPromise @@ -141,18 +141,18 @@ - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 91ad74520..0f7d0b47e 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%61 +%159 @@ -67,44 +67,44 @@
- - -JSValueCompatible - -JSValueCompatible + + +CustomStringConvertible + +CustomStringConvertible - + -JSBridgedType->JSValueCompatible - - +JSBridgedType->CustomStringConvertible + + - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - - -JSBridgedType->CustomStringConvertible + + +JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index c316648e3..0990636e4 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%109 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 1dc1cba93..216388f35 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%31 +%145 @@ -80,33 +80,33 @@
- + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol - + -JSOneshotClosure - +JSClosure + -JSOneshotClosure +JSClosure - - -JSOneshotClosure->JSClosureProtocol + + +JSClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index abd39097d..f80006a6a 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%111 +%93 @@ -82,7 +82,7 @@
- + JSDate->JSBridgedClass @@ -94,7 +94,7 @@ Comparable - + JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 0aa722f32..e6a1014be 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%103 +%167 @@ -75,7 +75,7 @@ Error
- + JSError->Error @@ -102,7 +102,7 @@ - + JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index f7ccd5105..18b593700 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%105 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 36ef03098..85330f3b8 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 97ba4ac3d..536e8e433 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%17 @@ -82,115 +82,115 @@
- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + - + Equatable - -Equatable + +Equatable JSObject->Equatable - - + + - + + +JSOneshotClosure + + +JSOneshotClosure + + + + + +JSOneshotClosure->JSObject + + + + -JSBigInt - - -JSBigInt +JSClosure + + +JSClosure - - -JSBigInt->JSObject + + +JSClosure->JSObject - + -JSSymbol - - -JSSymbol +JSBigInt + + +JSBigInt - + -JSSymbol->JSObject +JSBigInt->JSObject - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - + JSFunction - - -JSFunction + + +JSFunction - + JSFunction->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index fa4ee3c3b..870f378de 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 5ee05779c..17d0ffcb3 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%99 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 4185ce8d4..b835aad83 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%9 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 0f2daf582..efe596d83 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%127 @@ -78,69 +78,69 @@
- - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - - -JSString->ConvertibleToJSValue + + +JSString->LosslessStringConvertible - + -LosslessStringConvertible +ExpressibleByStringLiteral -LosslessStringConvertible +ExpressibleByStringLiteral - - -JSString->LosslessStringConvertible + + +JSString->ExpressibleByStringLiteral - - -ExpressibleByStringLiteral + + +ConvertibleToJSValue + -ExpressibleByStringLiteral +ConvertibleToJSValue + - - -JSString->ExpressibleByStringLiteral + + + +JSString->ConvertibleToJSValue - - -Equatable - -Equatable - - - -JSString->Equatable - - - - + ConstructibleFromJSValue - - -ConstructibleFromJSValue + + +ConstructibleFromJSValue - + JSString->ConstructibleFromJSValue + + + + + +Equatable + +Equatable + + + +JSString->Equatable @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 619f0e9a4..5c4c48156 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%13 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 614d46acb..f571587ae 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 0af1ff27a..1ea556a3e 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 2fc26806d..7ef132e56 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 4afd85361..7e4aca116 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 62265d78c..62912ae34 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%57 +%63 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 6a5af69df..82d757ead 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%67 @@ -67,27 +67,27 @@
- + -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral -ExpressibleByStringLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByStringLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByIntegerLiteral +JSValueCompatible -ExpressibleByIntegerLiteral +JSValueCompatible - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->JSValueCompatible @@ -98,44 +98,44 @@ Equatable - + JSValue->Equatable - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - + -JSValue->JSValueCompatible +JSValue->ExpressibleByFloatLiteral @@ -146,7 +146,7 @@ CustomStringConvertible - + JSValue->CustomStringConvertible @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index da11aef62..93dcbafc9 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 216d2d253..3de609140 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 2430c53f3..ba00663f0 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 46dafebef..193f76c2e 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 5cb2b6d5c..cba754c66 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index b4fe8253f..3f7eff7db 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%51 +%49 @@ -96,27 +96,27 @@
- + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor - + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index e5601e339..53a87edc2 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 0b4b9d1c8..adbf49ab8 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 9310daa6b..2548f161e 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index 080c51a90..eef607c73 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 832d7f0a6..e5f0ee39b 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%115 @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index c15397de0..03ddae1a7 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 4525c9b21..578fd2c21 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 334eafd63..7ac36fa50 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 60f5bc014..de40f33ea 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 94962ffec..2f736bf45 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 0f07d5220..75148fce9 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 0b5c535e8..90daeb846 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 9e856474a..d907ca456 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index e8671518e..b5dcc6662 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index cc12e5fcb..50acab692 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d81e595cf..8d6b45d3c 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index c7da99964..4cdbeccee 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 583afdc19..304c4abf0 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From cf25d46d3c57df8b63d863999fcdaf46fd77cd2b Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Mon, 8 May 2023 04:42:48 +0000 Subject: [PATCH 143/148] deploy: a66caa06e920f70ee4beb03fd82ea7d14b270ab6 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 34 +++--- ConvertibleToJSValue/index.html | 10 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 38 +++--- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 58 ++++----- JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 104 ++++++++-------- JSBridgedType/index.html | 50 ++++---- JSClosure/index.html | 38 +++--- JSClosureProtocol/index.html | 50 ++++---- JSDate/index.html | 36 +++--- JSError/index.html | 50 ++++---- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 138 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 34 +++--- JSPromise/index.html | 2 +- JSString/index.html | 40 +++---- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 +++--- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 76 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 6 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 ++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 474 insertions(+), 474 deletions(-) diff --git a/Array/index.html b/Array/index.html index c2136368e..62fae16f2 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 990c5f423..ca327e06d 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index bffd7d07f..c33d771c7 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ea32378b2..ca8deb1b4 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%19 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConstructibleFromJSValue +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConstructibleFromJSValue +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index f66f2de5e..6eb617e09 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%83 +%113 @@ -76,7 +76,7 @@ - + JSString->ConvertibleToJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 96425546b..0699fd1d5 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 2dececb0c..ff9799d1d 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 33709815c..a9d958a39 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index f740855e0..c53e93432 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index b9732cfa8..212200025 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 303899194..ec159184e 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index e546d4e10..2b97ab423 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 21485b481..4761b0707 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index f3252378e..005fe90de 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 640ee4354..69be7f8fd 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 8643377c4..c1aaad8a0 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%153 +%75 @@ -68,30 +68,30 @@
- - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass + + + + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 41d5f1d2a..b7fcd897b 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 3e2eb9c04..84cdd23d3 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%105 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 8bd49bb31..2fdcc9408 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%125 JSBigInt - -JSBigInt + +JSBigInt - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - + JSObject - - -JSObject + + +JSObject - + JSBigInt->JSObject - - + + + + + +JSBigIntExtended + + +JSBigIntExtended + + + + + +JSBigInt->JSBigIntExtended + + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 6c4526c1a..fa3e3ff0a 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%13 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 29baf6685..745295ca2 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%35 +%45 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType JSBridgedClass->JSBridgedType - - + + - - -JSDate - - -JSDate + + +JSTypedArray + + +JSTypedArray - - -JSDate->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + - - -JSArray - - -JSArray + + +JSPromise + + +JSPromise - + -JSArray->JSBridgedClass - - +JSPromise->JSBridgedClass + + - + -JSTypedArray - - -JSTypedArray +JSError + + +JSError - - -JSTypedArray->JSBridgedClass + + +JSError->JSBridgedClass - + -JSPromise - - -JSPromise +JSArray + + +JSArray - - -JSPromise->JSBridgedClass + + +JSArray->JSBridgedClass - + -JSError - +JSDate + -JSError +JSDate - + -JSError->JSBridgedClass +JSDate->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 0f7d0b47e..bc3641460 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%67 @@ -67,44 +67,44 @@
- - -CustomStringConvertible - -CustomStringConvertible + + +JSValueCompatible + +JSValueCompatible - - -JSBridgedType->CustomStringConvertible - - + + +JSBridgedType->JSValueCompatible + + - + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - + -JSBridgedType->JSValueCompatible +JSBridgedType->CustomStringConvertible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 0990636e4..564d01dbc 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%3 @@ -80,33 +80,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSClosure->JSObject + + +JSClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSClosure->JSClosureProtocol + + +JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 216388f35..800b7a3cb 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%161 @@ -69,16 +69,31 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + + + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + @@ -90,26 +105,11 @@ - + JSOneshotClosure->JSClosureProtocol - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - - @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index f80006a6a..6c144c7a3 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%93 +%133 @@ -72,30 +72,30 @@
- - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable - - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index e6a1014be..34a8b9201 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%167 +%59 @@ -68,42 +68,42 @@
- - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - + + -JSError->Error +JSError->JSBridgedClass - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - - +CustomStringConvertible - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 18b593700..6fa89eb57 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%25 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 85330f3b8..9d2697ef9 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 536e8e433..b1519318e 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%17 +%81 @@ -81,116 +81,116 @@
- + -CustomStringConvertible +Hashable -CustomStringConvertible +Hashable - - -JSObject->CustomStringConvertible + + +JSObject->Hashable - - -Hashable - -Hashable + + +CustomStringConvertible + +CustomStringConvertible - - -JSObject->Hashable - - + + +JSObject->CustomStringConvertible + + - + Equatable - -Equatable + +Equatable - + JSObject->Equatable - - + + - + -JSOneshotClosure - +JSSymbol + -JSOneshotClosure +JSSymbol - - -JSOneshotClosure->JSObject + + +JSSymbol->JSObject - + -JSClosure - - -JSClosure +JSBigInt + + +JSBigInt - - -JSClosure->JSObject + + +JSBigInt->JSObject - + -JSBigInt - - -JSBigInt +JSFunction + + +JSFunction - - -JSBigInt->JSObject + + +JSFunction->JSObject - - -JSSymbol - - -JSSymbol + + +JSClosure + + +JSClosure - + -JSSymbol->JSObject - - +JSClosure->JSObject + + - - -JSFunction - - -JSFunction + + +JSOneshotClosure + + +JSOneshotClosure - - -JSFunction->JSObject - - + + +JSOneshotClosure->JSObject + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 870f378de..67ffdc7d8 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 17d0ffcb3..516d35307 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -67,33 +67,33 @@

- - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject - - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index b835aad83..a3d8681aa 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index efe596d83..c2aeda417 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%127 +%145 @@ -85,7 +85,7 @@ LosslessStringConvertible
- + JSString->LosslessStringConvertible @@ -102,18 +102,15 @@ - - -ConvertibleToJSValue - + + +Equatable -ConvertibleToJSValue - - +Equatable - + -JSString->ConvertibleToJSValue +JSString->Equatable @@ -127,20 +124,23 @@
- + JSString->ConstructibleFromJSValue - - -Equatable + + +ConvertibleToJSValue + -Equatable +ConvertibleToJSValue + - + + -JSString->Equatable +JSString->ConvertibleToJSValue @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 5c4c48156..f4b600c44 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%157 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index f571587ae..05917e590 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 1ea556a3e..3f5a9d7fa 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 7ef132e56..a9c3b1d21 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 7e4aca116..d7fea1c4d 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%121 +%119 @@ -68,30 +68,30 @@
- - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass + + + + + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 62912ae34..3b3590200 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%63 +%109 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 82d757ead..639434232 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%29 @@ -67,27 +67,27 @@
- + -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral -ExpressibleByIntegerLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByNilLiteral - + -JSValueCompatible +ExpressibleByFloatLiteral -JSValueCompatible +ExpressibleByFloatLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByFloatLiteral @@ -103,51 +103,51 @@ - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByNilLiteral +ExpressibleByStringLiteral -ExpressibleByNilLiteral +ExpressibleByStringLiteral - + -JSValue->ExpressibleByNilLiteral +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +CustomStringConvertible -ExpressibleByFloatLiteral +CustomStringConvertible - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByIntegerLiteral -CustomStringConvertible +ExpressibleByIntegerLiteral - - -JSValue->CustomStringConvertible + + +JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 93dcbafc9..84569efc9 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 3de609140..41cfdbdaf 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index ba00663f0..a54f33f0a 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 193f76c2e..4eb3ebea0 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index cba754c66..cabe40958 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 3f7eff7db..e0a2f3e00 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%169 @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 53a87edc2..596b91b64 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index adbf49ab8..50cfadb39 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 2548f161e..7bf18f503 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index eef607c73..a4c35c270 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index e5f0ee39b..608760e5c 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%115 +%139 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 03ddae1a7..778af5cfa 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 578fd2c21..b9cfd63e8 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 7ac36fa50..80da12ab1 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index de40f33ea..4a991d655 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 2f736bf45..f6dc19c29 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 75148fce9..13a582edb 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 90daeb846..8e81d1f82 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index d907ca456..15f7e0701 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index b5dcc6662..a720fcbc7 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index 50acab692..d4b6c975b 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 8d6b45d3c..0b743552c 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 4cdbeccee..061954e6d 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index 304c4abf0..a5e788598 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From da35acfefcc43d9282bd39c4c3192c16ee22037d Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Fri, 21 Jul 2023 01:04:28 +0000 Subject: [PATCH 144/148] deploy: 32780ce4f4046c44db9ca24d8134a8b07f219cc8 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 ++++---- ConvertibleToJSValue/index.html | 6 +- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 10 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 10 +- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 42 ++++----- JSBridgedType/index.html | 10 +- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 50 +++++----- JSDate/index.html | 10 +- JSError/index.html | 42 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 106 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 38 ++++---- JSPromise/index.html | 6 +- JSString/index.html | 78 ++++++++-------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 38 ++++---- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 58 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 30 +++--- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 10 +- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 350 insertions(+), 350 deletions(-) diff --git a/Array/index.html b/Array/index.html index 62fae16f2..8e1524b43 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index ca327e06d..30679b96b 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index c33d771c7..d603a477b 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ca8deb1b4..da64fe337 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%19 +%49 @@ -66,33 +66,33 @@ - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 6eb617e09..5036c009b 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%137 @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 0699fd1d5..250ae2dc4 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index ff9799d1d..54fdaea19 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index a9d958a39..77bccb3f1 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index c53e93432..b3d74ed09 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 212200025..72be30ca6 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index ec159184e..51c43c185 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 2b97ab423..3990a76fd 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 4761b0707..706c64300 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 005fe90de..4704ec1fd 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 69be7f8fd..3488d2089 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index c1aaad8a0..f879d3d9c 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%75 +%37 @@ -78,7 +78,7 @@
- + JSArray->JSBridgedClass @@ -90,7 +90,7 @@ RandomAccessCollection - + JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index b7fcd897b..1e4b4f3dd 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 84cdd23d3..749d24c2d 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%105 +%29 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 2fdcc9408..bba110269 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%15 @@ -78,7 +78,7 @@
- + JSBigInt->JSObject @@ -99,7 +99,7 @@ - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index fa3e3ff0a..bab2572f3 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%13 +%3 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 745295ca2..0e1a6c3c3 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%55 @@ -67,19 +67,19 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + @@ -91,25 +91,25 @@ - + JSTypedArray->JSBridgedClass - + JSPromise - - -JSPromise + + +JSPromise - + JSPromise->JSBridgedClass - - + + @@ -121,7 +121,7 @@ - + JSError->JSBridgedClass @@ -136,7 +136,7 @@ - + JSArray->JSBridgedClass @@ -151,7 +151,7 @@ - + JSDate->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index bc3641460..40784c90f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%67 +%129 @@ -74,7 +74,7 @@ JSValueCompatible
- + JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@ - + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 564d01dbc..dd5ef8d1e 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%23 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 800b7a3cb..864355622 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%161 +%77 @@ -69,31 +69,16 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - + + @@ -105,11 +90,26 @@ - + JSOneshotClosure->JSClosureProtocol + + +JSClosure + + +JSClosure + + + + + +JSClosure->JSClosureProtocol + + + @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 6c144c7a3..4a73d9487 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%133 +%43 @@ -79,7 +79,7 @@ Comparable
- + JSDate->Comparable @@ -94,7 +94,7 @@ - + JSDate->JSBridgedClass @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 34a8b9201..444fbe459 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%69 @@ -68,30 +68,30 @@
- - -JSBridgedClass - + + +Error -JSBridgedClass - - +Error - - -JSError->JSBridgedClass + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -102,7 +102,7 @@ CustomStringConvertible - + JSError->CustomStringConvertible @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 6fa89eb57..329b8a4b8 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%25 +%143 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index 9d2697ef9..a0fda4eb4 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index b1519318e..74a4d8777 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%81 +%89 @@ -88,92 +88,92 @@ Hashable
- + JSObject->Hashable - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - + Equatable - -Equatable + +Equatable - + JSObject->Equatable + + + + + +CustomStringConvertible + +CustomStringConvertible + + + +JSObject->CustomStringConvertible - + -JSSymbol - - -JSSymbol +JSBigInt + + +JSBigInt - - -JSSymbol->JSObject + + +JSBigInt->JSObject - + -JSBigInt - - -JSBigInt +JSFunction + + +JSFunction - - -JSBigInt->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSClosure + + +JSClosure - + -JSFunction->JSObject - - +JSClosure->JSObject + + - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 67ffdc7d8..ac0529368 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 516d35307..cd4e1e59b 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%99 +%107 @@ -67,33 +67,33 @@
- - -JSObject - + + +JSClosureProtocol + -JSObject +JSClosureProtocol - - -JSOneshotClosure->JSObject + + +JSOneshotClosure->JSClosureProtocol - - -JSClosureProtocol - + + +JSObject + -JSClosureProtocol +JSObject - - -JSOneshotClosure->JSClosureProtocol + + +JSOneshotClosure->JSObject @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index a3d8681aa..31ae7e79e 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%33 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index c2aeda417..7d485ac79 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%145 +%163 @@ -78,69 +78,69 @@
- - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue - + -ExpressibleByStringLiteral +Equatable -ExpressibleByStringLiteral +Equatable - - -JSString->ExpressibleByStringLiteral + + +JSString->Equatable - + -Equatable +LosslessStringConvertible -Equatable +LosslessStringConvertible - - -JSString->Equatable + + +JSString->LosslessStringConvertible - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue - - -ConvertibleToJSValue - + + +ExpressibleByStringLiteral -ConvertibleToJSValue - - +ExpressibleByStringLiteral - - -JSString->ConvertibleToJSValue + + +JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index f4b600c44..356562b6f 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%147 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 05917e590..a39dc81a0 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 3f5a9d7fa..f71eafa94 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index a9c3b1d21..4dc780ab4 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index d7fea1c4d..2c5ab6365 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%119 +%9 @@ -68,30 +68,30 @@
+ + +ExpressibleByArrayLiteral + +ExpressibleByArrayLiteral + + + +JSTypedArray->ExpressibleByArrayLiteral + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSTypedArray->JSBridgedClass - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 3b3590200..925a26361 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%109 +%85 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 639434232..a35f56f7b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%113 @@ -74,7 +74,7 @@ ExpressibleByNilLiteral
- + JSValue->ExpressibleByNilLiteral @@ -86,56 +86,56 @@ ExpressibleByFloatLiteral - + JSValue->ExpressibleByFloatLiteral - + -Equatable +JSValueCompatible -Equatable +JSValueCompatible - - -JSValue->Equatable + + +JSValue->JSValueCompatible - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - - -JSValue->JSValueCompatible + + +JSValue->Equatable - + -ExpressibleByStringLiteral +CustomStringConvertible -ExpressibleByStringLiteral +CustomStringConvertible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->CustomStringConvertible - + -CustomStringConvertible +ExpressibleByStringLiteral -CustomStringConvertible +ExpressibleByStringLiteral - + -JSValue->CustomStringConvertible +JSValue->ExpressibleByStringLiteral @@ -146,7 +146,7 @@ ExpressibleByIntegerLiteral - + JSValue->ExpressibleByIntegerLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 84569efc9..2fecdec45 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 41cfdbdaf..6d7603fc8 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index a54f33f0a..645bcf5fb 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 4eb3ebea0..3cd8dd03f 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index cabe40958..cd0c1ba2e 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index e0a2f3e00..6f34765f8 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%151 @@ -96,27 +96,27 @@
- + -SerialExecutor +@unchecked Sendable -SerialExecutor +@unchecked Sendable - - -JavaScriptEventLoop->SerialExecutor + + +JavaScriptEventLoop->@unchecked Sendable - + -@unchecked Sendable +SerialExecutor -@unchecked Sendable +SerialExecutor - - -JavaScriptEventLoop->@unchecked Sendable + + +JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 596b91b64..9433a5ed3 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 50cfadb39..79b0d7271 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 7bf18f503..ccc4ef0ee 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index a4c35c270..ef96a15c0 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 608760e5c..072300ab1 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%139 +%157 @@ -76,7 +76,7 @@
- + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index 778af5cfa..dad4a3b35 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index b9cfd63e8..89643bfc5 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 80da12ab1..6e67a7f2d 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 4a991d655..994a41a89 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index f6dc19c29..0b8dcbca4 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 13a582edb..e9791a24a 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 8e81d1f82..0ebff56d3 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index 15f7e0701..abbbc5f69 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index a720fcbc7..0d1a5ab40 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index d4b6c975b..e3405ea04 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index 0b743552c..d9924d088 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 061954e6d..62a7f3596 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index a5e788598..d68792286 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From a66b124278e15c9e5acf5d5eadca8bf177cefdf3 Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sun, 23 Jul 2023 01:15:14 +0000 Subject: [PATCH 145/148] deploy: c283fa3cf069a56ecf770a5fd6ce69f5e6e5d091 --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 38 +++---- ConvertibleToJSValue/index.html | 38 +++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 2 +- Int16/index.html | 2 +- Int32/index.html | 2 +- Int64/index.html | 2 +- Int8/index.html | 2 +- JSArray/index.html | 6 +- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 60 +++++------ JSBigIntExtended/index.html | 10 +- JSBridgedClass/index.html | 108 +++++++++---------- JSBridgedType/index.html | 30 +++--- JSClosure/index.html | 6 +- JSClosureProtocol/index.html | 52 +++++----- JSDate/index.html | 36 +++---- JSError/index.html | 50 ++++----- JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 120 +++++++++++----------- JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 74 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 66 ++++++------ JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++--- UInt/index.html | 2 +- UInt16/index.html | 2 +- UInt32/index.html | 2 +- UInt64/index.html | 2 +- UInt8/index.html | 2 +- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 431 insertions(+), 431 deletions(-) diff --git a/Array/index.html b/Array/index.html index 8e1524b43..20cade24e 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 30679b96b..2e2033eee 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index d603a477b..5ef07d198 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index da64fe337..ebf37ab0a 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%49 +%53 @@ -66,33 +66,33 @@ - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConstructibleFromJSValue + + +TypedArrayElement->ConstructibleFromJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConstructibleFromJSValue + + +JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 5036c009b..640526d46 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%27 @@ -66,33 +66,33 @@
- - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - - -JSString->ConvertibleToJSValue + + +TypedArrayElement->ConvertibleToJSValue - - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - - -TypedArrayElement->ConvertibleToJSValue + + +JSString->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index 250ae2dc4..efa66cc74 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 54fdaea19..81adcbe01 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index 77bccb3f1..ccbcc0b50 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index b3d74ed09..f86a64651 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 72be30ca6..8ccdd93c0 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index 51c43c185..bcd6cf5ba 100644 --- a/Int/index.html +++ b/Int/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 3990a76fd..868f9c6c4 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index 706c64300..d808835ed 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index 4704ec1fd..af0293ba8 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index 3488d2089..eeea51717 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index f879d3d9c..4bb0b57e9 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%37 +%131 @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index 1e4b4f3dd..a249af163 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 749d24c2d..7d7e5a1ff 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%29 +%137 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index bba110269..12ba1045d 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,56 +53,56 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%15 +%117 JSBigInt - -JSBigInt + +JSBigInt - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - + JSBigIntExtended - - -JSBigIntExtended + + +JSBigIntExtended - + JSBigInt->JSBigIntExtended - - + + + + + +JSObject + + +JSObject + + + + + +JSBigInt->JSObject + + - + JSBigIntExtended->JSBigInt - - + + @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index bab2572f3..81ebe6e0d 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%3 +%107 @@ -72,13 +72,13 @@
- + JSBigIntExtended->JSBigInt - + JSBigInt->JSBigIntExtended @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index 0e1a6c3c3..f218404f1 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%55 +%59 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSTypedArray - - -JSTypedArray +JSPromise + + +JSPromise - - -JSTypedArray->JSBridgedClass + + +JSPromise->JSBridgedClass - - -JSPromise - - -JSPromise + + +JSDate + + +JSDate - - -JSPromise->JSBridgedClass - - + + +JSDate->JSBridgedClass + + - - -JSError - - -JSError + + +JSTypedArray + + +JSTypedArray - - -JSError->JSBridgedClass - - + + +JSTypedArray->JSBridgedClass + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + -JSDate - +JSError + -JSDate +JSError - - -JSDate->JSBridgedClass + + +JSError->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 40784c90f..714f27e2f 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%129 +%3 @@ -67,27 +67,27 @@
- + -JSValueCompatible +CustomStringConvertible -JSValueCompatible +CustomStringConvertible - - -JSBridgedType->JSValueCompatible + + +JSBridgedType->CustomStringConvertible - + -CustomStringConvertible +JSValueCompatible -CustomStringConvertible +JSValueCompatible - + -JSBridgedType->CustomStringConvertible +JSBridgedType->JSValueCompatible @@ -101,7 +101,7 @@
- + JSBridgedClass->JSBridgedType @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index dd5ef8d1e..86b44ed66 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%23 +%125 @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 864355622..75493780c 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%45 @@ -69,44 +69,44 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible JSClosureProtocol->JSValueCompatible - - + + - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - - -JSClosure->JSClosureProtocol + + +JSOneshotClosure->JSClosureProtocol @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 4a73d9487..4972cf268 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%43 +%101 @@ -72,30 +72,30 @@
- - -Comparable + + +JSBridgedClass + -Comparable +JSBridgedClass + - + + -JSDate->Comparable +JSDate->JSBridgedClass - - -JSBridgedClass - + + +Comparable -JSBridgedClass - +Comparable - - + -JSDate->JSBridgedClass +JSDate->Comparable @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index 444fbe459..c0e63459e 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%69 +%33 @@ -68,42 +68,42 @@
- - -Error - -Error - - - -JSError->Error - - - - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSError->JSBridgedClass - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible JSError->CustomStringConvertible + + + + + +Error + +Error + + + +JSError->Error @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 329b8a4b8..93e6958a7 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%143 +%73 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index a0fda4eb4..e745597c1 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 74a4d8777..23f0a0ff7 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%89 +%77 @@ -82,16 +82,16 @@
- + Hashable - -Hashable + +Hashable - + JSObject->Hashable - - + + @@ -100,97 +100,97 @@ Equatable - + JSObject->Equatable - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + - + -JSBigInt - - -JSBigInt +JSFunction + + +JSFunction - - -JSBigInt->JSObject + + +JSFunction->JSObject - - -JSFunction - - -JSFunction + + +JSOneshotClosure + + +JSOneshotClosure - - -JSFunction->JSObject - - + + +JSOneshotClosure->JSObject + + - + -JSClosure - +JSSymbol + -JSClosure +JSSymbol - - -JSClosure->JSObject + + +JSSymbol->JSObject - + -JSSymbol - +JSClosure + -JSSymbol +JSClosure - - -JSSymbol->JSObject + + +JSClosure->JSObject - - -JSOneshotClosure - - -JSOneshotClosure + + +JSBigInt + + +JSBigInt - - -JSOneshotClosure->JSObject - - + + +JSBigInt->JSObject + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index ac0529368..2c00cd64b 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index cd4e1e59b..4abd324c9 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%169 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 31ae7e79e..20df8192d 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%113 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 7d485ac79..8a28e55e0 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%163 +%147 @@ -78,18 +78,15 @@
- - -ConstructibleFromJSValue - + + +LosslessStringConvertible -ConstructibleFromJSValue - - +LosslessStringConvertible - - -JSString->ConstructibleFromJSValue + + +JSString->LosslessStringConvertible @@ -100,47 +97,50 @@ Equatable - + JSString->Equatable - - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue + + +ExpressibleByStringLiteral + +ExpressibleByStringLiteral + + + +JSString->ExpressibleByStringLiteral + + + - + ConvertibleToJSValue - - -ConvertibleToJSValue + + +ConvertibleToJSValue JSString->ConvertibleToJSValue - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 356562b6f..4d8d5b0b4 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%165 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index a39dc81a0..1c54ac042 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index f71eafa94..41a8caf8d 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index 4dc780ab4..ee37d04d3 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 2c5ab6365..17aea7b2e 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%9 +%159 @@ -75,7 +75,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -90,7 +90,7 @@ - + JSTypedArray->JSBridgedClass @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index 925a26361..d541253cd 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%85 +%41 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index a35f56f7b..32b53e87b 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%11 @@ -74,44 +74,44 @@ ExpressibleByNilLiteral
- + JSValue->ExpressibleByNilLiteral - + -ExpressibleByFloatLiteral +ExpressibleByStringLiteral -ExpressibleByFloatLiteral +ExpressibleByStringLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByStringLiteral - + -JSValueCompatible +Equatable -JSValueCompatible +Equatable - + -JSValue->JSValueCompatible +JSValue->Equatable - + -Equatable +ExpressibleByIntegerLiteral -Equatable +ExpressibleByIntegerLiteral - - -JSValue->Equatable + + +JSValue->ExpressibleByIntegerLiteral @@ -122,32 +122,32 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - + -JSValue->ExpressibleByIntegerLiteral +JSValue->ExpressibleByFloatLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index 2fecdec45..cf97d144b 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 6d7603fc8..6d4c90f8a 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 645bcf5fb..0666e25ac 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index 3cd8dd03f..cb2629815 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index cd0c1ba2e..83725eb82 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 6f34765f8..1a022d6ca 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%151 +%141 @@ -103,7 +103,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -115,7 +115,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index 9433a5ed3..b6a5eaeaa 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 79b0d7271..1e4d3a27e 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index ccc4ef0ee..3078601bb 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index ef96a15c0..a539a2667 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 072300ab1..53a248f57 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%157 +%95 @@ -66,33 +66,33 @@
- + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue - + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index dad4a3b35..b3834d434 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 89643bfc5..636e609e2 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 6e67a7f2d..2f3afa806 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 994a41a89..207fe1efe 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 0b8dcbca4..491b1b270 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index e9791a24a..685367b9b 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 0ebff56d3..49d1fa67e 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index abbbc5f69..b8734686a 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 0d1a5ab40..60f080f1d 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index e3405ea04..ef4f3bd13 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index d9924d088..df2f531d9 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 62a7f3596..21a93b85f 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index d68792286..ce066e645 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From c4697b751a01fa092c11ad3f58b7c9ea3ee8f4ee Mon Sep 17 00:00:00 2001 From: kateinoigakukun Date: Sat, 5 Aug 2023 20:06:36 +0000 Subject: [PATCH 146/148] deploy: 42f930db4d013b36e1b571b26ca146c7f097fdeb --- Array/index.html | 2 +- BinaryFloatingPoint/index.html | 2 +- Bool/index.html | 2 +- ConstructibleFromJSValue/index.html | 10 +-- ConvertibleToJSValue/index.html | 34 ++++---- Dictionary/index.html | 2 +- Double/index.html | 2 +- Float/index.html | 2 +- Float32/index.html | 2 +- Float64/index.html | 2 +- Int/index.html | 18 ++--- Int16/index.html | 16 ++-- Int32/index.html | 16 ++-- Int64/index.html | 2 +- Int8/index.html | 16 ++-- JSArray/index.html | 38 ++++----- JSArrayRef/index.html | 2 +- JSArray_Iterator/index.html | 6 +- JSBigInt/index.html | 12 +-- JSBigIntExtended/index.html | 6 +- JSBridgedClass/index.html | 88 ++++++++++---------- JSBridgedType/index.html | 30 +++---- JSClosure/index.html | 10 +-- JSClosureProtocol/index.html | 52 ++++++------ JSDate/index.html | 6 +- JSError/index.html | 52 ++++++------ JSFunction/index.html | 6 +- JSFunctionRef/index.html | 2 +- JSObject/index.html | 98 +++++++++++------------ JSObjectRef/index.html | 2 +- JSOneshotClosure/index.html | 6 +- JSPromise/index.html | 6 +- JSString/index.html | 56 ++++++------- JSSymbol/index.html | 6 +- JSThrowingFunction/index.html | 2 +- JSThrowingObject/index.html | 2 +- JSTimer/index.html | 2 +- JSTypedArray/index.html | 10 +-- JSUInt8ClampedArray/index.html | 6 +- JSValue/index.html | 70 ++++++++-------- JSValueCodable/index.html | 2 +- JSValueCompatible/index.html | 2 +- JSValueConstructible/index.html | 2 +- JSValueConvertible/index.html | 2 +- JSValueDecoder/index.html | 2 +- JavaScriptEventLoop/index.html | 10 +-- Optional/index.html | 2 +- RawJSValue/index.html | 2 +- SignedInteger/index.html | 2 +- String/index.html | 2 +- TypedArrayElement/index.html | 30 +++---- UInt/index.html | 18 ++--- UInt16/index.html | 16 ++-- UInt32/index.html | 16 ++-- UInt64/index.html | 2 +- UInt8/index.html | 16 ++-- UnsignedInteger/index.html | 2 +- getJSValue(this_index_)/index.html | 2 +- getJSValue(this_name_)/index.html | 2 +- getJSValue(this_symbol_)/index.html | 2 +- index.html | 2 +- setJSValue(this_index_value_)/index.html | 2 +- setJSValue(this_name_value_)/index.html | 2 +- setJSValue(this_symbol_value_)/index.html | 2 +- 64 files changed, 423 insertions(+), 423 deletions(-) diff --git a/Array/index.html b/Array/index.html index 20cade24e..02c782c23 100644 --- a/Array/index.html +++ b/Array/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html index 2e2033eee..877875251 100644 --- a/BinaryFloatingPoint/index.html +++ b/BinaryFloatingPoint/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Bool/index.html b/Bool/index.html index 5ef07d198..d2fca108f 100644 --- a/Bool/index.html +++ b/Bool/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html index ebf37ab0a..737713e8b 100644 --- a/ConstructibleFromJSValue/index.html +++ b/ConstructibleFromJSValue/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%53 +%57 @@ -76,7 +76,7 @@ - + TypedArrayElement->ConstructibleFromJSValue @@ -91,7 +91,7 @@ - + JSString->ConstructibleFromJSValue @@ -159,7 +159,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html index 640526d46..16a88c89f 100644 --- a/ConvertibleToJSValue/index.html +++ b/ConvertibleToJSValue/index.html @@ -51,11 +51,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%27 +%75 @@ -66,33 +66,33 @@
- - -TypedArrayElement - + + +JSString + -TypedArrayElement +JSString - + -TypedArrayElement->ConvertibleToJSValue +JSString->ConvertibleToJSValue - - -JSString - + + +TypedArrayElement + -JSString +TypedArrayElement - + -JSString->ConvertibleToJSValue +TypedArrayElement->ConvertibleToJSValue @@ -148,7 +148,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Dictionary/index.html b/Dictionary/index.html index efa66cc74..ccc11bfbd 100644 --- a/Dictionary/index.html +++ b/Dictionary/index.html @@ -72,7 +72,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Double/index.html b/Double/index.html index 81adcbe01..a2d08f639 100644 --- a/Double/index.html +++ b/Double/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float/index.html b/Float/index.html index ccbcc0b50..83b7591d9 100644 --- a/Float/index.html +++ b/Float/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float32/index.html b/Float32/index.html index f86a64651..2293dbef4 100644 --- a/Float32/index.html +++ b/Float32/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Float64/index.html b/Float64/index.html index 8ccdd93c0..0cab4121c 100644 --- a/Float64/index.html +++ b/Float64/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int/index.html b/Int/index.html index bcd6cf5ba..28779e354 100644 --- a/Int/index.html +++ b/Int/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int16/index.html b/Int16/index.html index 868f9c6c4..98b801c9e 100644 --- a/Int16/index.html +++ b/Int16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int32/index.html b/Int32/index.html index d808835ed..2d372f148 100644 --- a/Int32/index.html +++ b/Int32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int64/index.html b/Int64/index.html index af0293ba8..a5dfa1e5f 100644 --- a/Int64/index.html +++ b/Int64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Int8/index.html b/Int8/index.html index eeea51717..18f051f5b 100644 --- a/Int8/index.html +++ b/Int8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Int8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray/index.html b/JSArray/index.html index 4bb0b57e9..e36b2ac32 100644 --- a/JSArray/index.html +++ b/JSArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%131 +%157 @@ -68,30 +68,30 @@ + + +RandomAccessCollection + +RandomAccessCollection + + + +JSArray->RandomAccessCollection + + + - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass JSArray->JSBridgedClass - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection @@ -274,7 +274,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html index a249af163..f4d59b085 100644 --- a/JSArrayRef/index.html +++ b/JSArrayRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html index 7d7e5a1ff..b8ee1329f 100644 --- a/JSArray_Iterator/index.html +++ b/JSArray_Iterator/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%137 +%143 @@ -118,7 +118,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigInt/index.html b/JSBigInt/index.html index 12ba1045d..5e6a18935 100644 --- a/JSBigInt/index.html +++ b/JSBigInt/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%117 +%27 @@ -78,7 +78,7 @@
- + JSBigInt->JSBigIntExtended @@ -93,13 +93,13 @@ - + JSBigInt->JSObject - + JSBigIntExtended->JSBigInt @@ -240,7 +240,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html index 81ebe6e0d..805ce6c6a 100644 --- a/JSBigIntExtended/index.html +++ b/JSBigIntExtended/index.html @@ -47,11 +47,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%107 +%169 @@ -150,7 +150,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html index f218404f1..e9df65558 100644 --- a/JSBridgedClass/index.html +++ b/JSBridgedClass/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%59 +%87 @@ -67,92 +67,92 @@
- + JSBridgedType - - -JSBridgedType + + +JSBridgedType - + JSBridgedClass->JSBridgedType - - + + - + -JSPromise - +JSDate + -JSPromise +JSDate - - -JSPromise->JSBridgedClass + + +JSDate->JSBridgedClass - + -JSDate - +JSError + -JSDate +JSError - + -JSDate->JSBridgedClass +JSError->JSBridgedClass - + JSTypedArray - - -JSTypedArray + + +JSTypedArray - + JSTypedArray->JSBridgedClass - - + + - + JSArray - - -JSArray + + +JSArray - + JSArray->JSBridgedClass - - + + - + -JSError - +JSPromise + -JSError +JSPromise - - -JSError->JSBridgedClass + + +JSPromise->JSBridgedClass @@ -277,7 +277,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html index 714f27e2f..20c9e7a2e 100644 --- a/JSBridgedType/index.html +++ b/JSBridgedType/index.html @@ -68,16 +68,16 @@

- + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSBridgedType->CustomStringConvertible - - + + @@ -86,25 +86,25 @@ JSValueCompatible - + JSBridgedType->JSValueCompatible - + JSBridgedClass - - -JSBridgedClass + + +JSBridgedClass - + JSBridgedClass->JSBridgedType - - + + @@ -167,7 +167,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosure/index.html b/JSClosure/index.html index 86b44ed66..53900e109 100644 --- a/JSClosure/index.html +++ b/JSClosure/index.html @@ -65,11 +65,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%125 +%51 @@ -90,7 +90,7 @@
- + JSClosure->JSClosureProtocol @@ -105,7 +105,7 @@ - + JSClosure->JSObject @@ -184,7 +184,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html index 75493780c..d7ba87f9a 100644 --- a/JSClosureProtocol/index.html +++ b/JSClosureProtocol/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%45 +%135 @@ -69,46 +69,46 @@
- + JSValueCompatible - -JSValueCompatible + +JSValueCompatible - + JSClosureProtocol->JSValueCompatible - - + + - + -JSClosure - +JSOneshotClosure + -JSClosure +JSOneshotClosure - + -JSClosure->JSClosureProtocol +JSOneshotClosure->JSClosureProtocol - - -JSOneshotClosure - - -JSOneshotClosure + + +JSClosure + + +JSClosure - - -JSOneshotClosure->JSClosureProtocol - - + + +JSClosure->JSClosureProtocol + + @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSDate/index.html b/JSDate/index.html index 4972cf268..c35c6afeb 100644 --- a/JSDate/index.html +++ b/JSDate/index.html @@ -57,11 +57,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%101 +%151 @@ -501,7 +501,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSError/index.html b/JSError/index.html index c0e63459e..44a1b31a1 100644 --- a/JSError/index.html +++ b/JSError/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%33 +%11 @@ -68,42 +68,42 @@
- - -JSBridgedClass - + + +CustomStringConvertible -JSBridgedClass - +CustomStringConvertible - - - -JSError->JSBridgedClass + + +JSError->CustomStringConvertible - + -CustomStringConvertible +Error -CustomStringConvertible +Error - - -JSError->CustomStringConvertible + + +JSError->Error - - -Error + + +JSBridgedClass + -Error +JSBridgedClass + - - -JSError->Error + + + +JSError->JSBridgedClass @@ -242,7 +242,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunction/index.html b/JSFunction/index.html index 93e6958a7..32cf00f13 100644 --- a/JSFunction/index.html +++ b/JSFunction/index.html @@ -60,11 +60,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%73 +%19 @@ -334,7 +334,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html index e745597c1..de9ff948f 100644 --- a/JSFunctionRef/index.html +++ b/JSFunctionRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObject/index.html b/JSObject/index.html index 23f0a0ff7..33dc8ab17 100644 --- a/JSObject/index.html +++ b/JSObject/index.html @@ -66,11 +66,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%77 +%101 @@ -82,40 +82,40 @@
- + Hashable - -Hashable + +Hashable JSObject->Hashable - - - - - -Equatable - -Equatable - - - -JSObject->Equatable - - + + - + CustomStringConvertible - -CustomStringConvertible + +CustomStringConvertible - + JSObject->CustomStringConvertible - - + + + + + +Equatable + +Equatable + + + +JSObject->Equatable + + @@ -127,40 +127,40 @@ - + JSFunction->JSObject - + JSOneshotClosure - - -JSOneshotClosure + + +JSOneshotClosure - + JSOneshotClosure->JSObject - - + + - + JSSymbol - - -JSSymbol + + +JSSymbol - + JSSymbol->JSObject - - + + @@ -172,25 +172,25 @@ - + JSClosure->JSObject - + JSBigInt - - -JSBigInt + + +JSBigInt - + JSBigInt->JSObject - - + + @@ -438,7 +438,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html index 2c00cd64b..c16086719 100644 --- a/JSObjectRef/index.html +++ b/JSObjectRef/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html index 4abd324c9..75a7b4505 100644 --- a/JSOneshotClosure/index.html +++ b/JSOneshotClosure/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%169 +%163 @@ -157,7 +157,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSPromise/index.html b/JSPromise/index.html index 20df8192d..54360cd3c 100644 --- a/JSPromise/index.html +++ b/JSPromise/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%113 +%147 @@ -275,7 +275,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSString/index.html b/JSString/index.html index 8a28e55e0..a02b3267f 100644 --- a/JSString/index.html +++ b/JSString/index.html @@ -63,11 +63,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%147 +%119 @@ -78,15 +78,18 @@
- - -LosslessStringConvertible + + +ConstructibleFromJSValue + -LosslessStringConvertible +ConstructibleFromJSValue + - - -JSString->LosslessStringConvertible + + + +JSString->ConstructibleFromJSValue @@ -97,23 +100,23 @@ Equatable - + JSString->Equatable - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - - -JSString->ConstructibleFromJSValue + + +JSString->ConvertibleToJSValue @@ -124,23 +127,20 @@ ExpressibleByStringLiteral - + JSString->ExpressibleByStringLiteral - - -ConvertibleToJSValue - + + +LosslessStringConvertible -ConvertibleToJSValue - - +LosslessStringConvertible - + -JSString->ConvertibleToJSValue +JSString->LosslessStringConvertible @@ -273,7 +273,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSSymbol/index.html b/JSSymbol/index.html index 4d8d5b0b4..ca7f426d1 100644 --- a/JSSymbol/index.html +++ b/JSSymbol/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%165 +%23 @@ -297,7 +297,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html index 1c54ac042..b5ff86f8a 100644 --- a/JSThrowingFunction/index.html +++ b/JSThrowingFunction/index.html @@ -185,7 +185,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html index 41a8caf8d..0ef356f3e 100644 --- a/JSThrowingObject/index.html +++ b/JSThrowingObject/index.html @@ -66,7 +66,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTimer/index.html b/JSTimer/index.html index ee37d04d3..1c75cbf43 100644 --- a/JSTimer/index.html +++ b/JSTimer/index.html @@ -126,7 +126,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html index 17aea7b2e..24baca473 100644 --- a/JSTypedArray/index.html +++ b/JSTypedArray/index.html @@ -53,11 +53,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%159 +%81 @@ -75,7 +75,7 @@ ExpressibleByArrayLiteral
- + JSTypedArray->ExpressibleByArrayLiteral @@ -90,7 +90,7 @@ - + JSTypedArray->JSBridgedClass @@ -291,7 +291,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html index d541253cd..07464a100 100644 --- a/JSUInt8ClampedArray/index.html +++ b/JSUInt8ClampedArray/index.html @@ -53,11 +53,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%41 +%131 @@ -111,7 +111,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValue/index.html b/JSValue/index.html index 32b53e87b..cb72337b4 100644 --- a/JSValue/index.html +++ b/JSValue/index.html @@ -52,11 +52,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%11 +%35 @@ -67,27 +67,27 @@
- + -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral -ExpressibleByNilLiteral +ExpressibleByIntegerLiteral - - -JSValue->ExpressibleByNilLiteral + + +JSValue->ExpressibleByIntegerLiteral - + -ExpressibleByStringLiteral +JSValueCompatible -ExpressibleByStringLiteral +JSValueCompatible - - -JSValue->ExpressibleByStringLiteral + + +JSValue->JSValueCompatible @@ -98,20 +98,20 @@ Equatable - + JSValue->Equatable - + -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral -ExpressibleByIntegerLiteral +ExpressibleByFloatLiteral - - -JSValue->ExpressibleByIntegerLiteral + + +JSValue->ExpressibleByFloatLiteral @@ -122,32 +122,32 @@ CustomStringConvertible - + JSValue->CustomStringConvertible - + -JSValueCompatible +ExpressibleByStringLiteral -JSValueCompatible +ExpressibleByStringLiteral - - -JSValue->JSValueCompatible + + +JSValue->ExpressibleByStringLiteral - + -ExpressibleByFloatLiteral +ExpressibleByNilLiteral -ExpressibleByFloatLiteral +ExpressibleByNilLiteral - - -JSValue->ExpressibleByFloatLiteral + + +JSValue->ExpressibleByNilLiteral @@ -558,7 +558,7 @@

Returns

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html index cf97d144b..1ee917b59 100644 --- a/JSValueCodable/index.html +++ b/JSValueCodable/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html index 6d4c90f8a..490f27d99 100644 --- a/JSValueCompatible/index.html +++ b/JSValueCompatible/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html index 0666e25ac..23f1ba740 100644 --- a/JSValueConstructible/index.html +++ b/JSValueConstructible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html index cb2629815..07f1dd206 100644 --- a/JSValueConvertible/index.html +++ b/JSValueConvertible/index.html @@ -45,7 +45,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html index 83725eb82..50d9940fd 100644 --- a/JSValueDecoder/index.html +++ b/JSValueDecoder/index.html @@ -113,7 +113,7 @@

Parameters

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html index 1a022d6ca..fb7748784 100644 --- a/JavaScriptEventLoop/index.html +++ b/JavaScriptEventLoop/index.html @@ -81,11 +81,11 @@ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%141 +%69 @@ -103,7 +103,7 @@ @unchecked Sendable
- + JavaScriptEventLoop->@unchecked Sendable @@ -115,7 +115,7 @@ SerialExecutor - + JavaScriptEventLoop->SerialExecutor @@ -217,7 +217,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/Optional/index.html b/Optional/index.html index b6a5eaeaa..b6cbcdc5e 100644 --- a/Optional/index.html +++ b/Optional/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/RawJSValue/index.html b/RawJSValue/index.html index 1e4d3a27e..46e8853c9 100644 --- a/RawJSValue/index.html +++ b/RawJSValue/index.html @@ -52,7 +52,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/SignedInteger/index.html b/SignedInteger/index.html index 3078601bb..6eaa2f0ef 100644 --- a/SignedInteger/index.html +++ b/SignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/String/index.html b/String/index.html index a539a2667..04d5495aa 100644 --- a/String/index.html +++ b/String/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html index 53a248f57..bab8b2655 100644 --- a/TypedArrayElement/index.html +++ b/TypedArrayElement/index.html @@ -51,11 +51,11 @@

"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> - + -%95 +%63 @@ -66,33 +66,33 @@
- + -ConvertibleToJSValue - +ConstructibleFromJSValue + -ConvertibleToJSValue +ConstructibleFromJSValue - + -TypedArrayElement->ConvertibleToJSValue +TypedArrayElement->ConstructibleFromJSValue - + -ConstructibleFromJSValue - +ConvertibleToJSValue + -ConstructibleFromJSValue +ConvertibleToJSValue - + -TypedArrayElement->ConstructibleFromJSValue +TypedArrayElement->ConvertibleToJSValue @@ -136,7 +136,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt/index.html b/UInt/index.html index b3834d434..70404eb50 100644 --- a/UInt/index.html +++ b/UInt/index.html @@ -25,7 +25,7 @@ @@ -38,21 +38,21 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass: JSFunction =
+        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
@@ -61,7 +61,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt16/index.html b/UInt16/index.html index 636e609e2..c38273a2e 100644 --- a/UInt16/index.html +++ b/UInt16/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt32/index.html b/UInt32/index.html index 2f3afa806..e767149b4 100644 --- a/UInt32/index.html +++ b/UInt32/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt64/index.html b/UInt64/index.html index 207fe1efe..81d900c55 100644 --- a/UInt64/index.html +++ b/UInt64/index.html @@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UInt8/index.html b/UInt8/index.html index 491b1b270..5fcb11c8f 100644 --- a/UInt8/index.html +++ b/UInt8/index.html @@ -25,7 +25,7 @@ @@ -38,20 +38,20 @@

Properties

-
+

- typed​Array​Class + js​Value

-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
+
public var jsValue: JSValue  
-
+

- js​Value + typed​Array​Class

-
public var jsValue: JSValue  
+
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
@@ -60,7 +60,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html index 685367b9b..86106d2c5 100644 --- a/UnsignedInteger/index.html +++ b/UnsignedInteger/index.html @@ -64,7 +64,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html index 49d1fa67e..7482ed4b2 100644 --- a/getJSValue(this_index_)/index.html +++ b/getJSValue(this_index_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html index b8734686a..152c13866 100644 --- a/getJSValue(this_name_)/index.html +++ b/getJSValue(this_name_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html index 60f080f1d..d8462c824 100644 --- a/getJSValue(this_symbol_)/index.html +++ b/getJSValue(this_symbol_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/index.html b/index.html index ef4f3bd13..079265ea6 100644 --- a/index.html +++ b/index.html @@ -549,7 +549,7 @@

Extensions

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html index df2f531d9..cc2e3e834 100644 --- a/setJSValue(this_index_value_)/index.html +++ b/setJSValue(this_index_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html index 21a93b85f..05506a37c 100644 --- a/setJSValue(this_name_value_)/index.html +++ b/setJSValue(this_name_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html index ce066e645..7c2304986 100644 --- a/setJSValue(this_symbol_value_)/index.html +++ b/setJSValue(this_symbol_value_)/index.html @@ -44,7 +44,7 @@

- Generated on using swift-doc 1.0.0-rc.1. + Generated on using swift-doc 1.0.0-rc.1.

From a9a23aeeacd7d841e9b17fdb1d1be7e7c6815f0f Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Wed, 7 Feb 2024 16:50:37 +0900 Subject: [PATCH 147/148] Remove old swift-doc based documents --- .nojekyll | 0 Array/index.html | 79 --- BinaryFloatingPoint/index.html | 59 --- Bool/index.html | 71 --- ConstructibleFromJSValue/index.html | 166 ------- ConvertibleToJSValue/index.html | 155 ------ Dictionary/index.html | 79 --- Double/index.html | 59 --- Float/index.html | 59 --- Float32/index.html | 59 --- Float64/index.html | 59 --- Int/index.html | 68 --- Int16/index.html | 67 --- Int32/index.html | 67 --- Int64/index.html | 67 --- Int8/index.html | 67 --- JSArray/index.html | 281 ----------- JSArrayRef/index.html | 52 -- JSArray_Iterator/index.html | 125 ----- JSBigInt/index.html | 247 ---------- JSBigIntExtended/index.html | 157 ------ JSBridgedClass/index.html | 284 ----------- JSBridgedType/index.html | 174 ------- JSClosure/index.html | 191 -------- JSClosureProtocol/index.html | 164 ------- JSDate/index.html | 508 ------------------- JSError/index.html | 249 ---------- JSFunction/index.html | 341 ------------- JSFunctionRef/index.html | 52 -- JSObject/index.html | 445 ----------------- JSObjectRef/index.html | 52 -- JSOneshotClosure/index.html | 164 ------- JSPromise/index.html | 282 ----------- JSString/index.html | 280 ----------- JSSymbol/index.html | 304 ------------ JSThrowingFunction/index.html | 192 -------- JSThrowingObject/index.html | 73 --- JSTimer/index.html | 133 ----- JSTypedArray/index.html | 298 ------------ JSUInt8ClampedArray/index.html | 118 ----- JSValue/index.html | 565 ---------------------- JSValueCodable/index.html | 52 -- JSValueCompatible/index.html | 51 -- JSValueConstructible/index.html | 52 -- JSValueConvertible/index.html | 52 -- JSValueDecoder/index.html | 120 ----- JavaScriptEventLoop/index.html | 224 --------- Optional/index.html | 71 --- RawJSValue/index.html | 59 --- SignedInteger/index.html | 71 --- String/index.html | 71 --- TypedArrayElement/index.html | 143 ------ UInt/index.html | 68 --- UInt16/index.html | 67 --- UInt32/index.html | 67 --- UInt64/index.html | 67 --- UInt8/index.html | 67 --- UnsignedInteger/index.html | 71 --- all.css | 1 - getJSValue(this_index_)/index.html | 51 -- getJSValue(this_name_)/index.html | 51 -- getJSValue(this_symbol_)/index.html | 51 -- index.html | 556 --------------------- setJSValue(this_index_value_)/index.html | 51 -- setJSValue(this_name_value_)/index.html | 51 -- setJSValue(this_symbol_value_)/index.html | 51 -- 66 files changed, 9148 deletions(-) delete mode 100644 .nojekyll delete mode 100644 Array/index.html delete mode 100644 BinaryFloatingPoint/index.html delete mode 100644 Bool/index.html delete mode 100644 ConstructibleFromJSValue/index.html delete mode 100644 ConvertibleToJSValue/index.html delete mode 100644 Dictionary/index.html delete mode 100644 Double/index.html delete mode 100644 Float/index.html delete mode 100644 Float32/index.html delete mode 100644 Float64/index.html delete mode 100644 Int/index.html delete mode 100644 Int16/index.html delete mode 100644 Int32/index.html delete mode 100644 Int64/index.html delete mode 100644 Int8/index.html delete mode 100644 JSArray/index.html delete mode 100644 JSArrayRef/index.html delete mode 100644 JSArray_Iterator/index.html delete mode 100644 JSBigInt/index.html delete mode 100644 JSBigIntExtended/index.html delete mode 100644 JSBridgedClass/index.html delete mode 100644 JSBridgedType/index.html delete mode 100644 JSClosure/index.html delete mode 100644 JSClosureProtocol/index.html delete mode 100644 JSDate/index.html delete mode 100644 JSError/index.html delete mode 100644 JSFunction/index.html delete mode 100644 JSFunctionRef/index.html delete mode 100644 JSObject/index.html delete mode 100644 JSObjectRef/index.html delete mode 100644 JSOneshotClosure/index.html delete mode 100644 JSPromise/index.html delete mode 100644 JSString/index.html delete mode 100644 JSSymbol/index.html delete mode 100644 JSThrowingFunction/index.html delete mode 100644 JSThrowingObject/index.html delete mode 100644 JSTimer/index.html delete mode 100644 JSTypedArray/index.html delete mode 100644 JSUInt8ClampedArray/index.html delete mode 100644 JSValue/index.html delete mode 100644 JSValueCodable/index.html delete mode 100644 JSValueCompatible/index.html delete mode 100644 JSValueConstructible/index.html delete mode 100644 JSValueConvertible/index.html delete mode 100644 JSValueDecoder/index.html delete mode 100644 JavaScriptEventLoop/index.html delete mode 100644 Optional/index.html delete mode 100644 RawJSValue/index.html delete mode 100644 SignedInteger/index.html delete mode 100644 String/index.html delete mode 100644 TypedArrayElement/index.html delete mode 100644 UInt/index.html delete mode 100644 UInt16/index.html delete mode 100644 UInt32/index.html delete mode 100644 UInt64/index.html delete mode 100644 UInt8/index.html delete mode 100644 UnsignedInteger/index.html delete mode 100644 all.css delete mode 100644 getJSValue(this_index_)/index.html delete mode 100644 getJSValue(this_name_)/index.html delete mode 100644 getJSValue(this_symbol_)/index.html delete mode 100644 index.html delete mode 100644 setJSValue(this_index_value_)/index.html delete mode 100644 setJSValue(this_name_value_)/index.html delete mode 100644 setJSValue(this_symbol_value_)/index.html diff --git a/.nojekyll b/.nojekyll deleted file mode 100644 index e69de29bb..000000000 diff --git a/Array/index.html b/Array/index.html deleted file mode 100644 index 02c782c23..000000000 --- a/Array/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - JavaScriptKit - Array - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/BinaryFloatingPoint/index.html b/BinaryFloatingPoint/index.html deleted file mode 100644 index 877875251..000000000 --- a/BinaryFloatingPoint/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - BinaryFloatingPoint - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - BinaryFloatingPoint -

-
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Bool/index.html b/Bool/index.html deleted file mode 100644 index d2fca108f..000000000 --- a/Bool/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - JavaScriptKit - Bool - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/ConstructibleFromJSValue/index.html b/ConstructibleFromJSValue/index.html deleted file mode 100644 index 737713e8b..000000000 --- a/ConstructibleFromJSValue/index.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - JavaScriptKit - ConstructibleFromJSValue - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - Constructible​From​JSValue -

- -
-
public protocol ConstructibleFromJSValue  
-
-
-

Types conforming to this protocol can be constructed from JSValue.

- -
-
- -
- - - - - - -%57 - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - -JSString - - -JSString - - - - - -JSString->ConstructibleFromJSValue - - - - - - - - -
-

Types Conforming to Constructible​From​JSValue

-
-
TypedArrayElement
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

-
-
JSString
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

-
-
-
- - - -
-

Requirements

- -
-

- construct(from:​) -

-
-
static func construct(from value: JSValue) -> Self? 
-
-
-

Construct an instance of Self, if possible, from the given JSValue. -Return nil if the value is not compatible with the conforming Swift type.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
valueJSValue

The JSValue to decode

-
-

Returns

-

An instance of Self, if one was successfully constructed from the value.

- -
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/ConvertibleToJSValue/index.html b/ConvertibleToJSValue/index.html deleted file mode 100644 index 16a88c89f..000000000 --- a/ConvertibleToJSValue/index.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - JavaScriptKit - ConvertibleToJSValue - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - Convertible​ToJSValue -

- -
-
public protocol ConvertibleToJSValue  
-
-
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

- -
-
- -
- - - - - - -%75 - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSString - - -JSString - - - - - -JSString->ConvertibleToJSValue - - - - - -TypedArrayElement - - -TypedArrayElement - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - - - - -
-

Types Conforming to Convertible​ToJSValue

-
-
TypedArrayElement
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

-
-
JSString
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

-
-
-
-
-

Default Implementations

- -
-

- js​Value() -

-
-
@available(*, deprecated, message: "Use the .jsValue property instead")
-    public func jsValue() -> JSValue  
-
-
-
- - -
-

Requirements

- -
-

- js​Value -

-
-
var jsValue: JSValue  
-
-
-

Create a JSValue that represents this object

- -
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Dictionary/index.html b/Dictionary/index.html deleted file mode 100644 index ccc11bfbd..000000000 --- a/Dictionary/index.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - JavaScriptKit - Dictionary - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Double/index.html b/Double/index.html deleted file mode 100644 index a2d08f639..000000000 --- a/Double/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - Double - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Double -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Float/index.html b/Float/index.html deleted file mode 100644 index 83b7591d9..000000000 --- a/Float/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - Float - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Float -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Float32/index.html b/Float32/index.html deleted file mode 100644 index 2293dbef4..000000000 --- a/Float32/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - Float32 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Float32 -

-
-

Properties

- -
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Float32Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Float64/index.html b/Float64/index.html deleted file mode 100644 index 0cab4121c..000000000 --- a/Float64/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - Float64 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Float64 -

-
-

Properties

- -
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Float64Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Int/index.html b/Int/index.html deleted file mode 100644 index 28779e354..000000000 --- a/Int/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - JavaScriptKit - Int - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Int -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "Int", bitWidth: Int.bitWidth, when32: JSObject.global.Int32Array).function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Int16/index.html b/Int16/index.html deleted file mode 100644 index 98b801c9e..000000000 --- a/Int16/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - Int16 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Int16 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Int16Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Int32/index.html b/Int32/index.html deleted file mode 100644 index 2d372f148..000000000 --- a/Int32/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - Int32 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Int32 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Int32Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Int64/index.html b/Int64/index.html deleted file mode 100644 index a5dfa1e5f..000000000 --- a/Int64/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - Int64 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Int64 -

-
-

Properties

- -
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.BigInt64Array.function! 
-
-
-
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Int8/index.html b/Int8/index.html deleted file mode 100644 index 18f051f5b..000000000 --- a/Int8/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - Int8 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Int8 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Int8Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSArray/index.html b/JSArray/index.html deleted file mode 100644 index e36b2ac32..000000000 --- a/JSArray/index.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - JavaScriptKit - JSArray - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSArray -

- -
-
public class JSArray: JSBridgedClass  
-
-
-

A wrapper around the JavaScript Array -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- -
- - - - - - -%157 - - - -JSArray - - -JSArray - - - - - -RandomAccessCollection - -RandomAccessCollection - - - -JSArray->RandomAccessCollection - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSArray->JSBridgedClass - - - - - - - - -
-

Nested Types

-
-
JSArray.Iterator
-

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows -easy iteration over elements of JSArray instances.

-
-
-

Conforms To

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
RandomAccessCollection
-
-
-
-

Nested Type Aliases

- -
-

- Element -

-
-
public typealias Element = JSValue
-
-
-
-
-

Initializers

- -
-

- init?(from:​) -

-
-
public required convenience init?(from value: JSValue)  
-
-
-
-

- init?(_:​) -

-
-
public convenience init?(_ jsObject: JSObject)  
-
-
-

Construct a JSArray from Array JSObject. -Return nil if the object is not an Array.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
object

A JSObject expected to be a JavaScript Array

-
-
-
-

- init(unsafely​Wrapping:​) -

-
-
public required init(unsafelyWrapping jsObject: JSObject)  
-
-
-
-
-

Properties

- -
-

- constructor -

-
-
public static let constructor = JSObject.global.Array.function
-
-
-
-

- js​Object -

-
-
public let jsObject: JSObject
-
-
-
-

- start​Index -

-
-
public var startIndex: Int  
-
-
-
-

- end​Index -

-
-
public var endIndex: Int  
-
-
-
-

- length -

-
-
public var length: Int  
-
-
-

The number of elements in that array including empty hole. -Note that length respects JavaScript's Array.prototype.length

- -
-
-

e.g.

- -
const array = [1, , 3];
-
- -
let array: JSArray = ...
-array.length // 3
-array.count  // 2
-
-
-
-
-

- count -

-
-
public var count: Int  
-
-
-

The number of elements in that array not including empty hole. -Note that count syncs with the number that Iterator can iterate. -See also: JSArray.length

- -
-
-
-
-

Methods

- -
-

- make​Iterator() -

-
-
public func makeIterator() -> Iterator  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSArrayRef/index.html b/JSArrayRef/index.html deleted file mode 100644 index f4d59b085..000000000 --- a/JSArrayRef/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSArrayRef - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSArray​Ref -

- -
-
@available(*, deprecated, renamed: "JSArray")
-public typealias JSArrayRef = JSArray
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSArray_Iterator/index.html b/JSArray_Iterator/index.html deleted file mode 100644 index b8ee1329f..000000000 --- a/JSArray_Iterator/index.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - JavaScriptKit - JSArray.Iterator - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSArray.​Iterator -

- -
-
public class Iterator: IteratorProtocol  
-
-
-

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows -easy iteration over elements of JSArray instances.

- -
-
- -
- - - - - - -%143 - - - -JSArray.Iterator - - -JSArray.Iterator - - - - - -IteratorProtocol - -IteratorProtocol - - - -JSArray.Iterator->IteratorProtocol - - - - - - - - -
-

Member Of

-
-
JSArray
-

A wrapper around the JavaScript Array -class -that exposes its properties in a type-safe and Swifty way.

-
-
-

Conforms To

-
-
IteratorProtocol
-
-
-
-

Methods

- -
-

- next() -

-
-
public func next() -> Element?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSBigInt/index.html b/JSBigInt/index.html deleted file mode 100644 index 5e6a18935..000000000 --- a/JSBigInt/index.html +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - JavaScriptKit - JSBigInt - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSBig​Int -

- -
-
public final class JSBigInt: JSObject  
-
-
-

A wrapper around the JavaScript BigInt -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- -
- - - - - - -%27 - - - -JSBigInt - - -JSBigInt - - - - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt->JSBigIntExtended - - - - - -JSObject - - -JSObject - - - - - -JSBigInt->JSObject - - - - - -JSBigIntExtended->JSBigInt - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-

Conforms To

-
-
JSBigIntExtended
-
-
-

Types Conforming to JSBig​Int

-
-
JSBigIntExtended
-
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
public convenience init(_ value: Int64)  
-
-
-
-

- init(unsigned:​) -

-
-
public convenience init(unsigned value: UInt64)  
-
-
-
-

- init(id:​) -

-
-
@_spi(JSObject_id)
-    override public init(id: JavaScriptObjectRef)  
-
-
-
-

- init(_slow​Bridge:​) -

-
-
public init(_slowBridge value: Int64)  
-
-
-

Instantiate a new JSBigInt with given Int64 value in a slow path -This doesn't require JS-BigInt-integration feature.

- -
-
-
-

- init(_slow​Bridge:​) -

-
-
public init(_slowBridge value: UInt64)  
-
-
-

Instantiate a new JSBigInt with given UInt64 value in a slow path -This doesn't require JS-BigInt-integration feature.

- -
-
-
-
-

Properties

- -
-

- int64Value -

-
-
public var int64Value: Int64  
-
-
-
-

- uInt64Value -

-
-
public var uInt64Value: UInt64  
-
-
-
-

- js​Value -

-
-
override public var jsValue: JSValue  
-
-
-
-
-

Methods

- -
-

- construct(from:​) -

-
-
override public class func construct(from value: JSValue) -> Self?  
-
-
-
-

- clamped(bit​Size:​signed:​) -

-
-
public func clamped(bitSize: Int, signed: Bool) -> JSBigInt  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSBigIntExtended/index.html b/JSBigIntExtended/index.html deleted file mode 100644 index 805ce6c6a..000000000 --- a/JSBigIntExtended/index.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - JavaScriptKit - JSBigIntExtended - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - JSBig​Int​Extended -

- -
-
public protocol JSBigIntExtended: JSBigInt  
-
-
- -
- - - - - - -%169 - - - -JSBigIntExtended - - -JSBigIntExtended - - - - - -JSBigInt - - -JSBigInt - - - - - -JSBigIntExtended->JSBigInt - - - - - -JSBigInt->JSBigIntExtended - - - - - - - - -
-

Conforms To

-
-
JSBigInt
-

A wrapper around the JavaScript BigInt -class -that exposes its properties in a type-safe and Swifty way.

-
-
-

Types Conforming to JSBig​Int​Extended

-
-
JSBigInt
-

A wrapper around the JavaScript BigInt -class -that exposes its properties in a type-safe and Swifty way.

-
-
-
- - - -
-

Requirements

- -
-

- int64Value -

-
-
var int64Value: Int64  
-
-
-
-

- uInt64Value -

-
-
var uInt64Value: UInt64  
-
-
-
-

- init(_:​) -

-
-
init(_ value: Int64) 
-
-
-
-

- init(unsigned:​) -

-
-
init(unsigned value: UInt64) 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSBridgedClass/index.html b/JSBridgedClass/index.html deleted file mode 100644 index e9df65558..000000000 --- a/JSBridgedClass/index.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - JavaScriptKit - JSBridgedClass - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - JSBridged​Class -

- -
-
public protocol JSBridgedClass: JSBridgedType  
-
-
-

Conform to this protocol when your Swift class wraps a JavaScript class.

- -
-
- -
- - - - - - -%87 - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedType - - -JSBridgedType - - - - - -JSBridgedClass->JSBridgedType - - - - - -JSDate - - -JSDate - - - - - -JSDate->JSBridgedClass - - - - - -JSError - - -JSError - - - - - -JSError->JSBridgedClass - - - - - -JSTypedArray - - -JSTypedArray - - - - - -JSTypedArray->JSBridgedClass - - - - - -JSArray - - -JSArray - - - - - -JSArray->JSBridgedClass - - - - - -JSPromise - - -JSPromise - - - - - -JSPromise->JSBridgedClass - - - - - - - - -
-

Conforms To

-
-
JSBridgedType
-

Use this protocol when your type has no single JavaScript class. -For example, a union type of multiple classes or primitive values.

-
-
-

Types Conforming to JSBridged​Class

-
-
JSArray
-

A wrapper around the JavaScript Array -class -that exposes its properties in a type-safe and Swifty way.

-
-
JSDate
-

A wrapper around the JavaScript Date -class that -exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example -getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches -in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS -implementations are not exposed in a type-safe manner, you should access the underlying jsObject -property if you need those.

-
-
JSError
-

A wrapper around the JavaScript Error -class that -exposes its properties in a type-safe way.

-
-
JSPromise
-

A wrapper around the JavaScript Promise class

-
-
JSTypedArray
-

A wrapper around all JavaScript TypedArray -classes -that exposes their properties in a type-safe way.

-
-
-
-
-

Default Implementations

- -
-

- js​Value -

-
-
var jsValue: JSValue  
-
-
-
-

- init?(from:​) -

-
-
init?(from value: JSValue)  
-
-
-
-

- init?(from:​) -

-
-
init?(from object: JSObject)  
-
-
-
- - -
-

Requirements

- -
-

- constructor -

-
-
static var constructor: JSFunction?  
-
-
-

The constructor function for the JavaScript class

- -
-
-
-

- js​Object -

-
-
var jsObject: JSObject  
-
-
-

The JavaScript object wrapped by this instance. -You may assume that jsObject instanceof Self.constructor == true

- -
-
-
-

- init(unsafely​Wrapping:​) -

-
-
init(unsafelyWrapping jsObject: JSObject) 
-
-
-

Create an instance wrapping the given JavaScript object. -You may assume that jsObject instanceof Self.constructor

- -
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSBridgedType/index.html b/JSBridgedType/index.html deleted file mode 100644 index 20c9e7a2e..000000000 --- a/JSBridgedType/index.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - JavaScriptKit - JSBridgedType - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - JSBridged​Type -

- -
-
public protocol JSBridgedType: JSValueCompatible, CustomStringConvertible  
-
-
-

Use this protocol when your type has no single JavaScript class. -For example, a union type of multiple classes or primitive values.

- -
-
- -
- - - - - - -%3 - - - -JSBridgedType - - -JSBridgedType - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSBridgedType->CustomStringConvertible - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSBridgedType->JSValueCompatible - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSBridgedClass->JSBridgedType - - - - - - - - -
-

Conforms To

-
-
CustomStringConvertible
-
JSValueCompatible
-
-

Types Conforming to JSBridged​Type

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
-
-
-

Default Implementations

- -
-

- construct(from:​) -

-
-
static func construct(from value: JSValue) -> Self?  
-
-
-
-

- description -

-
-
var description: String  
-
-
-
- - -
-

Requirements

- -
-

- init?(from:​) -

-
-
init?(from value: JSValue) 
-
-
-

If your class is incompatible with the provided value, return nil.

- -
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSClosure/index.html b/JSClosure/index.html deleted file mode 100644 index 53900e109..000000000 --- a/JSClosure/index.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - JavaScriptKit - JSClosure - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSClosure -

- -
-
public class JSClosure: JSObject, JSClosureProtocol  
-
-
-

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions.

- -
-
-

e.g.

- -
let eventListenter = JSClosure { _ in
-    ...
-    return JSValue.undefined
-}
-
-button.addEventListener!("click", JSValue.function(eventListenter))
-...
-button.removeEventListener!("click", JSValue.function(eventListenter))
-
-
-
- -
- - - - - - -%51 - - - -JSClosure - - -JSClosure - - - - - -JSClosureProtocol - - -JSClosureProtocol - - - - - -JSClosure->JSClosureProtocol - - - - - -JSObject - - -JSObject - - - - - -JSClosure->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-

Conforms To

-
-
JSClosureProtocol
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types -are responsible for managing the lifetime of the closure they wrap, but can delegate that -task to the user by requiring an explicit release() call.

-
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
@available(*, deprecated, message: "This initializer will be removed in the next minor version update. Please use `init(_ body: @escaping ([JSValue]) -> JSValue)` and add `return .undefined` to the end of your closure")
-    @_disfavoredOverload
-    public convenience init(_ body: @escaping ([JSValue]) -> ())  
-
-
-
-

- init(_:​file:​line:​) -

-
-
public init(_ body: @escaping ([JSValue]) -> JSValue, file: String = #fileID, line: UInt32 = #line)  
-
-
-
-
-

Methods

- -
-

- release() -

-
-
public func release()  
-
-
-
-

- release() -

-
-
@available(*, deprecated, message: "JSClosure.release() is no longer necessary")
-    public func release()  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSClosureProtocol/index.html b/JSClosureProtocol/index.html deleted file mode 100644 index d7ba87f9a..000000000 --- a/JSClosureProtocol/index.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - JavaScriptKit - JSClosureProtocol - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - JSClosure​Protocol -

- -
-
public protocol JSClosureProtocol: JSValueCompatible  
-
-
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types -are responsible for managing the lifetime of the closure they wrap, but can delegate that -task to the user by requiring an explicit release() call.

- -
-
- -
- - - - - - -%135 - - - -JSClosureProtocol - - -JSClosureProtocol - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSClosureProtocol->JSValueCompatible - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSClosureProtocol - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSClosureProtocol - - - - - - - - -
-

Conforms To

-
-
JSValueCompatible
-
-

Types Conforming to JSClosure​Protocol

-
-
JSOneshotClosure
-

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used -for optimized memory management when compared to the common JSClosure.

-
-
JSClosure
-

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions.

-
-
-
- - - -
-

Requirements

- -
-

- release() -

-
-
func release() 
-
-
-

Release this function resource. -After calling release, calling this function from JavaScript will fail.

- -
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSDate/index.html b/JSDate/index.html deleted file mode 100644 index c35c6afeb..000000000 --- a/JSDate/index.html +++ /dev/null @@ -1,508 +0,0 @@ - - - - - - JavaScriptKit - JSDate - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSDate -

- -
-
public final class JSDate: JSBridgedClass  
-
-
-

A wrapper around the JavaScript Date -class that -exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example -getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches -in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS -implementations are not exposed in a type-safe manner, you should access the underlying jsObject -property if you need those.

- -
-
- -
- - - - - - -%151 - - - -JSDate - - -JSDate - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSDate->JSBridgedClass - - - - - -Comparable - -Comparable - - - -JSDate->Comparable - - - - - - - - -
-

Conforms To

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
Comparable
-
-
-
-

Initializers

- -
-

- init(milliseconds​Since​Epoch:​) -

-
-
public init(millisecondsSinceEpoch: Double? = nil)  
-
-
-

Creates a new instance of the JavaScript Date class with a given amount of milliseconds -that passed since midnight 01 January 1970 UTC.

- -
-
-
-

- init(year:​month​Index:​day:​hours:​minutes:​seconds:​milliseconds:​) -

-
-
public init(
-        year: Int,
-        monthIndex: Int,
-        day: Int = 1,
-        hours: Int = 0,
-        minutes: Int = 0,
-        seconds: Int = 0,
-        milliseconds: Int = 0
-    )  
-
-
-

According to the standard, monthIndex is zero-indexed, where 11 is December. day -represents a day of the month starting at 1.

- -
-
-
-

- init(unsafely​Wrapping:​) -

-
-
public init(unsafelyWrapping jsObject: JSObject)  
-
-
-
-
-

Properties

- -
-

- constructor -

-
-
public static let constructor = JSObject.global.Date.function
-
-
-

The constructor function used to create new Date objects.

- -
-
-
-

- js​Object -

-
-
public let jsObject: JSObject
-
-
-

The underlying JavaScript Date object.

- -
-
-
-

- full​Year -

-
-
public var fullYear: Int  
-
-
-

Year of this date in local time zone.

- -
-
-
-

- month -

-
-
public var month: Int  
-
-
-

Month of this date in 0–11 range in local time zone.

- -
-
-
-

- date -

-
-
public var date: Int  
-
-
-

The day of the month in 1..31 range in local time zone.

- -
-
-
-

- day -

-
-
public var day: Int  
-
-
-

The day of the week in 0..6 range in local time zone.

- -
-
-
-

- hours -

-
-
public var hours: Int  
-
-
-

The amount of hours in this day from 0..23 range in local time zone.

- -
-
-
-

- minutes -

-
-
public var minutes: Int  
-
-
-

The amount of minutes in this hours from 0..59 range in local time zone.

- -
-
-
-

- seconds -

-
-
public var seconds: Int  
-
-
-

The amount of seconds in this minute from 0..59 range in local time zone.

- -
-
-
-

- milliseconds -

-
-
public var milliseconds: Int  
-
-
-

The amount of milliseconds in this second 0..999 range in local time zone.

- -
-
-
-

- utc​Full​Year -

-
-
public var utcFullYear: Int  
-
-
-

Year of this date in the UTC time zone.

- -
-
-
-

- utc​Month -

-
-
public var utcMonth: Int  
-
-
-

Month of this date in 0–11 range in the UTC time zone.

- -
-
-
-

- utc​Date -

-
-
public var utcDate: Int  
-
-
-

The day of the month in 1..31 range in the UTC time zone.

- -
-
-
-

- utc​Day -

-
-
public var utcDay: Int  
-
-
-

The day of the week in 0..6 range in the UTC time zone.

- -
-
-
-

- utc​Hours -

-
-
public var utcHours: Int  
-
-
-

The amount of hours in this day from 0..23 range in the UTC time zone.

- -
-
-
-

- utc​Minutes -

-
-
public var utcMinutes: Int  
-
-
-

The amount of minutes in this hours from 0..59 range in the UTC time zone.

- -
-
-
-

- utc​Seconds -

-
-
public var utcSeconds: Int  
-
-
-

The amount of seconds in this minute from 0..59 range in the UTC time zone.

- -
-
-
-

- utc​Milliseconds -

-
-
public var utcMilliseconds: Int  
-
-
-

The amount of milliseconds in this second 0..999 range in the UTC time zone.

- -
-
-
-

- timezone​Offset -

-
-
public var timezoneOffset: Int  
-
-
-

Offset in minutes between the local time zone and UTC.

- -
-
-
-
-

Methods

- -
-

- to​ISOString() -

-
-
public func toISOString() -> String  
-
-
-

Returns a string conforming to ISO 8601 that contains date and time, e.g. -"2020-09-15T08:56:54.811Z".

- -
-
-
-

- to​Locale​Date​String() -

-
-
public func toLocaleDateString() -> String  
-
-
-

Returns a string with date parts in a format defined by user's locale, e.g. "9/15/2020".

- -
-
-
-

- to​Locale​Time​String() -

-
-
public func toLocaleTimeString() -> String  
-
-
-

Returns a string with time parts in a format defined by user's locale, e.g. "10:04:14".

- -
-
-
-

- to​UTCString() -

-
-
public func toUTCString() -> String  
-
-
-

Returns a string formatted according to -rfc7231 and modified according to -ecma-262, -e.g. Tue, 15 Sep 2020 09:04:40 GMT.

- -
-
-
-

- now() -

-
-
public static func now() -> Double  
-
-
-

Number of milliseconds since midnight 01 January 1970 UTC to the present moment ignoring -leap seconds.

- -
-
-
-

- value​Of() -

-
-
public func valueOf() -> Double  
-
-
-

Number of milliseconds since midnight 01 January 1970 UTC to the given date ignoring leap -seconds.

- -
-
-
-
-

Operators

- -
-

- == -

-
-
public static func == (lhs: JSDate, rhs: JSDate) -> Bool  
-
-
-
-

- < -

-
-
public static func < (lhs: JSDate, rhs: JSDate) -> Bool  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSError/index.html b/JSError/index.html deleted file mode 100644 index 44a1b31a1..000000000 --- a/JSError/index.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - JavaScriptKit - JSError - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSError -

- -
-
public final class JSError: Error, JSBridgedClass  
-
-
-

A wrapper around the JavaScript Error -class that -exposes its properties in a type-safe way.

- -
-
- -
- - - - - - -%11 - - - -JSError - - -JSError - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSError->CustomStringConvertible - - - - - -Error - -Error - - - -JSError->Error - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSError->JSBridgedClass - - - - - - - - -
-

Conforms To

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
CustomStringConvertible
-
Error
-
-
-
-

Initializers

- -
-

- init(message:​) -

-
-
public init(message: String)  
-
-
-

Creates a new instance of the JavaScript Error class with a given message.

- -
-
-
-

- init(unsafely​Wrapping:​) -

-
-
public init(unsafelyWrapping jsObject: JSObject)  
-
-
-
-
-

Properties

- -
-

- constructor -

-
-
public static let constructor = JSObject.global.Error.function
-
-
-

The constructor function used to create new JavaScript Error objects.

- -
-
-
-

- js​Object -

-
-
public let jsObject: JSObject
-
-
-

The underlying JavaScript Error object.

- -
-
-
-

- message -

-
-
public var message: String  
-
-
-

The error message of the underlying Error object.

- -
-
-
-

- name -

-
-
public var name: String  
-
-
-

The name (usually corresponds to the name of the underlying class) of a given error.

- -
-
-
-

- stack -

-
-
public var stack: String?  
-
-
-

The JavaScript call stack that led to the creation of this error object.

- -
-
-
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-

Creates a new JSValue from this JSError instance.

- -
-
-
-

- description -

-
-
public var description: String  
-
-
-

The textual representation of this error.

- -
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSFunction/index.html b/JSFunction/index.html deleted file mode 100644 index 32cf00f13..000000000 --- a/JSFunction/index.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - JavaScriptKit - JSFunction - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSFunction -

- -
-
public class JSFunction: JSObject  
-
-
-

JSFunction represents a function in JavaScript and supports new object instantiation. -This type can be callable as a function using callAsFunction.

- -
-
-

e.g.

- -
let alert: JSFunction = JSObject.global.alert.function!
-// Call `JSFunction` as a function
-alert("Hello, world")
-
-
-
- -
- - - - - - -%19 - - - -JSFunction - - -JSFunction - - - - - -JSObject - - -JSObject - - - - - -JSFunction->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-
-
-

Properties

- -
-

- `throws` -

-
-
public var `throws`: JSThrowingFunction  
-
-
-

A modifier to call this function as a throwing function

- -
-
-
function validateAge(age) {
-  if (age < 0) {
-    throw new Error("Invalid age");
-  }
-}
-
- -
let validateAge = JSObject.global.validateAge.function!
-try validateAge.throws(20)
-
-
-
-
-

- js​Value -

-
-
override public var jsValue: JSValue  
-
-
-
-
-

Methods

- -
-

- call​AsFunction(this:​arguments:​) -

-
-
@discardableResult
-    public func callAsFunction(this: JSObject, arguments: [ConvertibleToJSValue]) -> JSValue  
-
-
-

Call this function with given arguments and binding given this as context.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - -
thisJSObject

The value to be passed as the this parameter to this function.

-
arguments[Convertible​ToJSValue]

Arguments to be passed to this function.

-
-

Returns

-

The result of this call.

- -
-
-

- call​AsFunction(arguments:​) -

-
-
@discardableResult
-    public func callAsFunction(arguments: [ConvertibleToJSValue]) -> JSValue  
-
-
-

Call this function with given arguments.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
arguments[Convertible​ToJSValue]

Arguments to be passed to this function.

-
-

Returns

-

The result of this call.

- -
-
-

- call​AsFunction(this:​_:​) -

-
-
@discardableResult
-    public func callAsFunction(this: JSObject, _ arguments: ConvertibleToJSValue...) -> JSValue  
-
-
-

A variadic arguments version of callAsFunction.

- -
-
-
-

- call​AsFunction(_:​) -

-
-
@discardableResult
-    public func callAsFunction(_ arguments: ConvertibleToJSValue...) -> JSValue  
-
-
-

A variadic arguments version of callAsFunction.

- -
-
-
-

- new(arguments:​) -

-
-
public func new(arguments: [ConvertibleToJSValue]) -> JSObject  
-
-
-

Instantiate an object from this function as a constructor.

- -
-
-

Guaranteed to return an object because either:

- -
    -
  • -

    a. the constructor explicitly returns an object, or

    -
  • -
  • -

    b. the constructor returns nothing, which causes JS to return the this value, or

    -
  • -
  • -

    c. the constructor returns undefined, null or a non-object, in which case JS also returns this.

    -
  • -
- -
-

Parameters

- - - - - - - - - - - - - - - - -
arguments[Convertible​ToJSValue]

Arguments to be passed to this constructor function.

-
-

Returns

-

A new instance of this constructor.

- -
-
-

- new(_:​) -

-
-
public func new(_ arguments: ConvertibleToJSValue...) -> JSObject  
-
-
-

A variadic arguments version of new.

- -
-
-
-

- from(_:​) -

-
-
@available(*, unavailable, message: "Please use JSClosure instead")
-    public static func from(_: @escaping ([JSValue]) -> JSValue) -> JSFunction  
-
-
-
-

- construct(from:​) -

-
-
override public class func construct(from value: JSValue) -> Self?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSFunctionRef/index.html b/JSFunctionRef/index.html deleted file mode 100644 index de9ff948f..000000000 --- a/JSFunctionRef/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSFunctionRef - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSFunction​Ref -

- -
-
@available(*, deprecated, renamed: "JSFunction")
-public typealias JSFunctionRef = JSFunction
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSObject/index.html b/JSObject/index.html deleted file mode 100644 index 33dc8ab17..000000000 --- a/JSObject/index.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - JavaScriptKit - JSObject - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSObject -

- -
-
@dynamicMemberLookup
-public class JSObject: Equatable  
-
-
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

- -
-
-

And this object supports to call a member method of the object.

- -

e.g.

- -
let document = JSObject.global.document.object!
-let divElement = document.createElement!("div")
-
-

The lifetime of this object is managed by the JavaScript and Swift runtime bridge library with -reference counting system.

- -
-
- -
- - - - - - -%101 - - - -JSObject - - -JSObject - - - - - -Hashable - -Hashable - - - -JSObject->Hashable - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSObject->CustomStringConvertible - - - - - -Equatable - -Equatable - - - -JSObject->Equatable - - - - - -JSFunction - - -JSFunction - - - - - -JSFunction->JSObject - - - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSOneshotClosure->JSObject - - - - - -JSSymbol - - -JSSymbol - - - - - -JSSymbol->JSObject - - - - - -JSClosure - - -JSClosure - - - - - -JSClosure->JSObject - - - - - -JSBigInt - - -JSBigInt - - - - - -JSBigInt->JSObject - - - - - - - - -
-

Subclasses

-
-
JSBigInt
-

A wrapper around the JavaScript BigInt -class -that exposes its properties in a type-safe and Swifty way.

-
-
JSOneshotClosure
-

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used -for optimized memory management when compared to the common JSClosure.

-
-
JSClosure
-

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions.

-
-
JSFunction
-

JSFunction represents a function in JavaScript and supports new object instantiation. -This type can be callable as a function using callAsFunction.

-
-
JSSymbol
-

A wrapper around the JavaScript Symbol -class -that exposes its properties in a type-safe and Swifty way.

-
-
-

Conforms To

-
-
CustomStringConvertible
-
Equatable
-
Hashable
-
-
-
-

Initializers

- -
-

- init(id:​) -

-
-
@_spi(JSObject_id)
-    public init(id: JavaScriptObjectRef)  
-
-
-
-
-

Properties

- -
-

- id -

-
-
@_spi(JSObject_id)
-    public var id: JavaScriptObjectRef
-
-
-
-

- throwing -

-
-
public var throwing: JSThrowingObject  
-
-
-

A modifier to call methods as throwing methods capturing this

- -
-
-
const animal = {
-  validateAge: function() {
-    if (this.age < 0) {
-      throw new Error("Invalid age");
-    }
-  }
-}
-
- -
let animal = JSObject.global.animal.object!
-try animal.throwing.validateAge!()
-
-
-
-
-

- global -

-
-
public static let global  
-
-
-

A JSObject of the global scope object. -This allows access to the global properties and global names by accessing the JSObject returned.

- -
-
-
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- description -

-
-
public var description: String  
-
-
-
-
-

Methods

- -
-

- is​Instance​Of(_:​) -

-
-
public func isInstanceOf(_ constructor: JSFunction) -> Bool  
-
-
-

Return true if this value is an instance of the passed constructor function.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
constructorJSFunction

The constructor function to check.

-
-

Returns

-

The result of instanceof in the JavaScript environment.

- -
-
-

- construct(from:​) -

-
-
public class func construct(from value: JSValue) -> Self?  
-
-
-
-

- hash(into:​) -

-
-
public func hash(into hasher: inout Hasher)  
-
-
-

Hashes the essential components of this value by feeding them into the -given hasher.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
hasherinout Hasher

The hasher to use when combining the components of this instance.

-
-
-
-
-

Operators

- -
-

- == -

-
-
public static func == (lhs: JSObject, rhs: JSObject) -> Bool  
-
-
-

Returns a Boolean value indicating whether two values point to same objects.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - -
lhsJSObject

A object to compare.

-
rhsJSObject

Another object to compare.

-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSObjectRef/index.html b/JSObjectRef/index.html deleted file mode 100644 index c16086719..000000000 --- a/JSObjectRef/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSObjectRef - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSObject​Ref -

- -
-
@available(*, deprecated, renamed: "JSObject")
-public typealias JSObjectRef = JSObject
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSOneshotClosure/index.html b/JSOneshotClosure/index.html deleted file mode 100644 index 75a7b4505..000000000 --- a/JSOneshotClosure/index.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - JavaScriptKit - JSOneshotClosure - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSOneshot​Closure -

- -
-
public class JSOneshotClosure: JSObject, JSClosureProtocol  
-
-
-

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used -for optimized memory management when compared to the common JSClosure.

- -
-
- -
- - - - - - -%163 - - - -JSOneshotClosure - - -JSOneshotClosure - - - - - -JSClosureProtocol - - -JSClosureProtocol - - - - - -JSOneshotClosure->JSClosureProtocol - - - - - -JSObject - - -JSObject - - - - - -JSOneshotClosure->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-

Conforms To

-
-
JSClosureProtocol
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types -are responsible for managing the lifetime of the closure they wrap, but can delegate that -task to the user by requiring an explicit release() call.

-
-
-
-
-

Initializers

- -
-

- init(_:​file:​line:​) -

-
-
public init(_ body: @escaping ([JSValue]) -> JSValue, file: String = #fileID, line: UInt32 = #line)  
-
-
-
-
-

Methods

- -
-

- release() -

-
-
public func release()  
-
-
-

Release this function resource. -After calling release, calling this function from JavaScript will fail.

- -
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSPromise/index.html b/JSPromise/index.html deleted file mode 100644 index 54360cd3c..000000000 --- a/JSPromise/index.html +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - JavaScriptKit - JSPromise - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSPromise -

- -
-
public final class JSPromise: JSBridgedClass  
-
-
-

A wrapper around the JavaScript Promise class

- -
-
- -
- - - - - - -%147 - - - -JSPromise - - -JSPromise - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSPromise->JSBridgedClass - - - - - - - - -
-

Conforms To

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
-
-
-

Initializers

- -
-

- init(unsafely​Wrapping:​) -

-
-
public init(unsafelyWrapping object: JSObject)  
-
-
-

This private initializer assumes that the passed object is a JavaScript Promise

- -
-
-
-

- init?(_:​) -

-
-
public convenience init?(_ jsObject: JSObject)  
-
-
-

Creates a new JSPromise instance from a given JavaScript Promise object. If jsObject -is not an instance of JavaScript Promise, this initializer will return nil.

- -
-
-
-

- init(resolver:​) -

-
-
public convenience init(resolver: @escaping (@escaping (Result<JSValue, JSValue>) -> Void) -> Void)  
-
-
-

Creates a new JSPromise instance from a given resolver closure. -The closure is passed a completion handler. Passing a successful -Result to the completion handler will cause the promise to resolve -with the corresponding value; passing a failure Result will cause the -promise to reject with the corresponding value. -Calling the completion handler more than once will have no effect -(per the JavaScript specification).

- -
-
-
-
-

Properties

- -
-

- js​Object -

-
-
public let jsObject: JSObject
-
-
-

The underlying JavaScript Promise object.

- -
-
-
-

- constructor -

-
-
public static var constructor: JSFunction?  
-
-
-
-
-

Methods

- -
-

- js​Value() -

-
-
public func jsValue() -> JSValue  
-
-
-

The underlying JavaScript Promise object wrapped as JSValue.

- -
-
-
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
-
-

Creates a new JSPromise instance from a given JavaScript Promise object. If value -is not an object and is not an instance of JavaScript Promise, this function will -return nil.

- -
-
-
-

- resolve(_:​) -

-
-
public static func resolve(_ value: ConvertibleToJSValue) -> JSPromise  
-
-
-
-

- reject(_:​) -

-
-
public static func reject(_ reason: ConvertibleToJSValue) -> JSPromise  
-
-
-
-

- then(success:​) -

-
-
@discardableResult
-    public func then(success: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  
-
-
-

Schedules the success closure to be invoked on successful completion of self.

- -
-
-
-

- then(success:​failure:​) -

-
-
@discardableResult
-    public func then(
-        success: @escaping (JSValue) -> ConvertibleToJSValue,
-        failure: @escaping (JSValue) -> ConvertibleToJSValue
-    ) -> JSPromise  
-
-
-

Schedules the success closure to be invoked on successful completion of self.

- -
-
-
-

- `catch`(failure:​) -

-
-
@discardableResult
-    public func `catch`(failure: @escaping (JSValue) -> ConvertibleToJSValue) -> JSPromise  
-
-
-

Schedules the failure closure to be invoked on rejected completion of self.

- -
-
-
-

- finally(success​OrFailure:​) -

-
-
@discardableResult
-    public func finally(successOrFailure: @escaping () -> Void) -> JSPromise  
-
-
-

Schedules the failure closure to be invoked on either successful or rejected -completion of self.

- -
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSString/index.html b/JSString/index.html deleted file mode 100644 index a02b3267f..000000000 --- a/JSString/index.html +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - JavaScriptKit - JSString - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Structure - JSString -

- -
-
public struct JSString: LosslessStringConvertible, Equatable  
-
-
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

- -
-
-

Conversion between Swift.String and JSString can be:

- -
// Convert `Swift.String` to `JSString`
-let jsString: JSString = ...
-let swiftString: String = String(jsString)
-
-// Convert `JSString` to `Swift.String`
-let swiftString: String = ...
-let jsString: JSString = JSString(swiftString)
-
-
-
- -
- - - - - - -%119 - - - -JSString - - -JSString - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -JSString->ConstructibleFromJSValue - - - - - -Equatable - -Equatable - - - -JSString->Equatable - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -JSString->ConvertibleToJSValue - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSString->ExpressibleByStringLiteral - - - - - -LosslessStringConvertible - -LosslessStringConvertible - - - -JSString->LosslessStringConvertible - - - - - - - - -
-

Conforms To

-
-
ConstructibleFromJSValue
-

Types conforming to this protocol can be constructed from JSValue.

-
-
ConvertibleToJSValue
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

-
-
Equatable
-
ExpressibleByStringLiteral
-
LosslessStringConvertible
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ stringValue: String)  
-
-
-

Instantiate a new JSString with given Swift.String.

- -
-
-
-

- init(string​Literal:​) -

-
-
public init(stringLiteral value: String)  
-
-
-
-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- description -

-
-
public var description: String  
-
-
-

A Swift representation of this JSString. -Note that this accessor may copy the JS string value into Swift side memory.

- -
-
-
-
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> JSString?  
-
-
-
-
-

Operators

- -
-

- == -

-
-
public static func == (lhs: JSString, rhs: JSString) -> Bool  
-
-
-

Returns a Boolean value indicating whether two strings are equal values.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - -
lhsJSString

A string to compare.

-
rhsJSString

Another string to compare.

-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSSymbol/index.html b/JSSymbol/index.html deleted file mode 100644 index ca7f426d1..000000000 --- a/JSSymbol/index.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - JavaScriptKit - JSSymbol - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSSymbol -

- -
-
public class JSSymbol: JSObject  
-
-
-

A wrapper around the JavaScript Symbol -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- -
- - - - - - -%23 - - - -JSSymbol - - -JSSymbol - - - - - -JSObject - - -JSObject - - - - - -JSSymbol->JSObject - - - - - - - - -
-

Superclass

-
-
JSObject
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

-
-
-
-
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ description: JSString)  
-
-
-
-

- init(_:​) -

-
-
@_disfavoredOverload
-    public convenience init(_ description: String)  
-
-
-
-
-

Properties

- -
-

- name -

-
-
public var name: String?  
-
-
-
-

- js​Value -

-
-
override public var jsValue: JSValue  
-
-
-
-

- async​Iterator -

-
-
public static let asyncIterator: JSSymbol! = Symbol.asyncIterator.symbol
-
-
-
-

- has​Instance -

-
-
public static let hasInstance: JSSymbol! = Symbol.hasInstance.symbol
-
-
-
-

- is​Concat​Spreadable -

-
-
public static let isConcatSpreadable: JSSymbol! = Symbol.isConcatSpreadable.symbol
-
-
-
-

- iterator -

-
-
public static let iterator: JSSymbol! = Symbol.iterator.symbol
-
-
-
-

- match -

-
-
public static let match: JSSymbol! = Symbol.match.symbol
-
-
-
-

- match​All -

-
-
public static let matchAll: JSSymbol! = Symbol.matchAll.symbol
-
-
-
-

- replace -

-
-
public static let replace: JSSymbol! = Symbol.replace.symbol
-
-
-
-

- search -

-
-
public static let search: JSSymbol! = Symbol.search.symbol
-
-
-
-

- species -

-
-
public static let species: JSSymbol! = Symbol.species.symbol
-
-
-
-

- split -

-
-
public static let split: JSSymbol! = Symbol.split.symbol
-
-
-
-

- to​Primitive -

-
-
public static let toPrimitive: JSSymbol! = Symbol.toPrimitive.symbol
-
-
-
-

- to​String​Tag -

-
-
public static let toStringTag: JSSymbol! = Symbol.toStringTag.symbol
-
-
-
-

- unscopables -

-
-
public static let unscopables: JSSymbol! = Symbol.unscopables.symbol
-
-
-
-
-

Methods

- -
-

- `for`(key:​) -

-
-
public static func `for`(key: JSString) -> JSSymbol  
-
-
-
-

- `for`(key:​) -

-
-
@_disfavoredOverload
-    public static func `for`(key: String) -> JSSymbol  
-
-
-
-

- key(for:​) -

-
-
public static func key(for symbol: JSSymbol) -> JSString?  
-
-
-
-

- key(for:​) -

-
-
@_disfavoredOverload
-    public static func key(for symbol: JSSymbol) -> String?  
-
-
-
-

- construct(from:​) -

-
-
override public class func construct(from value: JSValue) -> Self?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSThrowingFunction/index.html b/JSThrowingFunction/index.html deleted file mode 100644 index b5ff86f8a..000000000 --- a/JSThrowingFunction/index.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - JavaScriptKit - JSThrowingFunction - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSThrowing​Function -

- -
-
public class JSThrowingFunction  
-
-
-

A JSFunction wrapper that enables throwing function calls. -Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
- -
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ base: JSFunction)  
-
-
-
-
-

Methods

- -
-

- call​AsFunction(this:​arguments:​) -

-
-
@discardableResult
-    public func callAsFunction(this: JSObject? = nil, arguments: [ConvertibleToJSValue]) throws -> JSValue  
-
-
-

Call this function with given arguments and binding given this as context.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - -
thisJSObject?

The value to be passed as the this parameter to this function.

-
arguments[Convertible​ToJSValue]

Arguments to be passed to this function.

-
-

Returns

-

The result of this call.

- -
-
-

- call​AsFunction(this:​_:​) -

-
-
@discardableResult
-    public func callAsFunction(this: JSObject? = nil, _ arguments: ConvertibleToJSValue...) throws -> JSValue  
-
-
-

A variadic arguments version of callAsFunction.

- -
-
-
-

- new(arguments:​) -

-
-
public func new(arguments: [ConvertibleToJSValue]) throws -> JSObject  
-
-
-

Instantiate an object from this function as a throwing constructor.

- -
-
-

Guaranteed to return an object because either:

- -
    -
  • -

    a. the constructor explicitly returns an object, or

    -
  • -
  • -

    b. the constructor returns nothing, which causes JS to return the this value, or

    -
  • -
  • -

    c. the constructor returns undefined, null or a non-object, in which case JS also returns this.

    -
  • -
- -
-

Parameters

- - - - - - - - - - - - - - - - -
arguments[Convertible​ToJSValue]

Arguments to be passed to this constructor function.

-
-

Returns

-

A new instance of this constructor.

- -
-
-

- new(_:​) -

-
-
public func new(_ arguments: ConvertibleToJSValue...) throws -> JSObject  
-
-
-

A variadic arguments version of new.

- -
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSThrowingObject/index.html b/JSThrowingObject/index.html deleted file mode 100644 index 0ef356f3e..000000000 --- a/JSThrowingObject/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - JavaScriptKit - JSThrowingObject - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSThrowing​Object -

- -
-
@dynamicMemberLookup
-public class JSThrowingObject  
-
-
-

A JSObject wrapper that enables throwing method calls capturing this. -Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
- -
-

Initializers

- -
-

- init(_:​) -

-
-
public init(_ base: JSObject)  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSTimer/index.html b/JSTimer/index.html deleted file mode 100644 index 1c75cbf43..000000000 --- a/JSTimer/index.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - JavaScriptKit - JSTimer - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSTimer -

- -
-
public final class JSTimer  
-
-
-

This timer is an abstraction over setInterval -/ clearInterval and -setTimeout -/ clearTimeout -JavaScript functions. It intentionally doesn't match the JavaScript API, as a special care is -needed to hold a reference to the timer closure and to call JSClosure.release() on it when the -timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay -valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the -only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero. -For invalidation you should either store the timer in an optional property and assign nil to it, -or deallocate the object that owns the timer.

- -
- -
-

Initializers

- -
-

- init(milliseconds​Delay:​is​Repeating:​callback:​) -

-
-
public init(millisecondsDelay: Double, isRepeating: Bool = false, callback: @escaping () -> ())  
-
-
-

Creates a new timer instance that calls setInterval or setTimeout JavaScript functions for you -under the hood.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - -
milliseconds​DelayDouble

the amount of milliseconds before the callback closure is executed.

-
is​RepeatingBool

when true the callback closure is executed repeatedly at given millisecondsDelay intervals indefinitely until the timer is deallocated.

-
callback@escaping () -> ()

the closure to be executed after a given millisecondsDelay interval.

-
-
-
-
-

Properties

- -
-

- is​Repeating -

-
-
public let isRepeating: Bool
-
-
-

Indicates whether this timer instance calls its callback repeatedly at a given delay.

- -
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSTypedArray/index.html b/JSTypedArray/index.html deleted file mode 100644 index 24baca473..000000000 --- a/JSTypedArray/index.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - JavaScriptKit - JSTypedArray - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSTyped​Array -

- -
-
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement  
-
-
-

A wrapper around all JavaScript TypedArray -classes -that exposes their properties in a type-safe way.

- -
-
- -
- - - - - - -%81 - - - -JSTypedArray - - -JSTypedArray - - - - - -ExpressibleByArrayLiteral - -ExpressibleByArrayLiteral - - - -JSTypedArray->ExpressibleByArrayLiteral - - - - - -JSBridgedClass - - -JSBridgedClass - - - - - -JSTypedArray->JSBridgedClass - - - - - - - - -
-

Conforms To

-
-
JSBridgedClass
-

Conform to this protocol when your Swift class wraps a JavaScript class.

-
-
ExpressibleByArrayLiteral
-
-
-
-

Initializers

- -
-

- init(length:​) -

-
-
public init(length: Int)  
-
-
-

Initialize a new instance of TypedArray in JavaScript environment with given length. -All the elements will be initialized to zero.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
lengthInt

The number of elements that will be allocated.

-
-
-
-

- init(unsafely​Wrapping:​) -

-
-
public required init(unsafelyWrapping jsObject: JSObject)  
-
-
-
-

- init(array​Literal:​) -

-
-
public required convenience init(arrayLiteral elements: Element...)  
-
-
-
-

- init(_:​) -

-
-
public convenience init(_ array: [Element])  
-
-
-

Initialize a new instance of TypedArray in JavaScript environment with given elements.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
array[Element]

The array that will be copied to create a new instance of TypedArray

-
-
-
-

- init(_:​) -

-
-
public convenience init<S: Sequence>(_ sequence: S) where S.Element == Element  
-
-
-

Convenience initializer for Sequence.

- -
-
-
-
-

Properties

- -
-

- constructor -

-
-
public class var constructor: JSFunction?  
-
-
-
-

- js​Object -

-
-
public var jsObject: JSObject
-
-
-
-

- length​InBytes -

-
-
public var lengthInBytes: Int  
-
-
-

Length (in bytes) of the typed array. -The value is established when a TypedArray is constructed and cannot be changed. -If the TypedArray is not specifying a byteOffset or a length, the length of the referenced ArrayBuffer will be returned.

- -
-
-
-
-

Methods

- -
-

- with​Unsafe​Bytes(_:​) -

-
-
public func withUnsafeBytes<R>(_ body: (UnsafeBufferPointer<Element>) throws -> R) rethrows -> R  
-
-
-

Calls the given closure with a pointer to a copy of the underlying bytes of the -array's storage.

- -
-
- -
-

Parameters

- - - - - - - - - - - - - - - - -
body(Unsafe​Buffer​Pointer<Element>) throws -> R

A closure with an UnsafeBufferPointer parameter that points to the contiguous storage for the array. If body has a return value, that value is also used as the return value for the withUnsafeBytes(_:) method. The argument is valid only for the duration of the closure's execution.

-
-

Returns

-

The return value, if any, of the body closure parameter.

- -
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSUInt8ClampedArray/index.html b/JSUInt8ClampedArray/index.html deleted file mode 100644 index 07464a100..000000000 --- a/JSUInt8ClampedArray/index.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - JavaScriptKit - JSUInt8ClampedArray - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSUInt8Clamped​Array -

- -
-
public class JSUInt8ClampedArray: JSTypedArray<UInt8>  
-
-
-

A wrapper around the JavaScript Uint8ClampedArray -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- -
- - - - - - -%131 - - - -JSUInt8ClampedArray - - -JSUInt8ClampedArray - - - - - -JSTypedArray<UInt8> - -JSTypedArray<UInt8> - - - -JSUInt8ClampedArray->JSTypedArray<UInt8> - - - - - - - - -
-

Conforms To

-
-
JSTypedArray<UInt8>
-
-
-
-

Properties

- -
-

- constructor -

-
-
override public class var constructor: JSFunction?  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValue/index.html b/JSValue/index.html deleted file mode 100644 index cb72337b4..000000000 --- a/JSValue/index.html +++ /dev/null @@ -1,565 +0,0 @@ - - - - - - JavaScriptKit - JSValue - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Enumeration - JSValue -

- -
-
@dynamicMemberLookup
-public enum JSValue: Equatable  
-
-
-

JSValue represents a value in JavaScript.

- -
-
- -
- - - - - - -%35 - - - -JSValue - - -JSValue - - - - - -ExpressibleByIntegerLiteral - -ExpressibleByIntegerLiteral - - - -JSValue->ExpressibleByIntegerLiteral - - - - - -JSValueCompatible - -JSValueCompatible - - - -JSValue->JSValueCompatible - - - - - -Equatable - -Equatable - - - -JSValue->Equatable - - - - - -ExpressibleByFloatLiteral - -ExpressibleByFloatLiteral - - - -JSValue->ExpressibleByFloatLiteral - - - - - -CustomStringConvertible - -CustomStringConvertible - - - -JSValue->CustomStringConvertible - - - - - -ExpressibleByStringLiteral - -ExpressibleByStringLiteral - - - -JSValue->ExpressibleByStringLiteral - - - - - -ExpressibleByNilLiteral - -ExpressibleByNilLiteral - - - -JSValue->ExpressibleByNilLiteral - - - - - - - - -
-

Conforms To

-
-
CustomStringConvertible
-
Equatable
-
ExpressibleByFloatLiteral
-
ExpressibleByIntegerLiteral
-
ExpressibleByNilLiteral
-
ExpressibleByStringLiteral
-
JSValueCompatible
-
-
-
-

Initializers

- -
-

- init(string​Literal:​) -

-
-
public init(stringLiteral value: String)  
-
-
-
-

- init(integer​Literal:​) -

-
-
public init(integerLiteral value: Int32)  
-
-
-
-

- init(float​Literal:​) -

-
-
public init(floatLiteral value: Double)  
-
-
-
-

- init(nil​Literal:​) -

-
-
public init(nilLiteral _: ())  
-
-
-
-
-

Enumeration Cases

- -
-

- boolean -

-
-
case boolean(Bool) 
-
-
-
-

- string -

-
-
case string(JSString) 
-
-
-
-

- number -

-
-
case number(Double) 
-
-
-
-

- object -

-
-
case object(JSObject) 
-
-
-
-

- null -

-
-
case null
-
-
-
-

- undefined -

-
-
case undefined
-
-
-
-

- function -

-
-
case function(JSFunction) 
-
-
-
-

- symbol -

-
-
case symbol(JSSymbol) 
-
-
-
-

- big​Int -

-
-
case bigInt(JSBigInt) 
-
-
-
-
-

Properties

- -
-

- array -

-
-
var array: JSArray?  
-
-
-
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- boolean -

-
-
public var boolean: Bool?  
-
-
-

Returns the Bool value of this JS value if its type is boolean. -If not, returns nil.

- -
-
-
-

- string -

-
-
public var string: String?  
-
-
-

Returns the String value of this JS value if the type is string. -If not, returns nil.

- -
-
-

Note that this accessor may copy the JS string value into Swift side memory.

- -

To avoid the copying, please consider the jsString instead.

- -
-
-
-

- js​String -

-
-
public var jsString: JSString?  
-
-
-

Returns the JSString value of this JS value if the type is string. -If not, returns nil.

- -
-
-
-

- number -

-
-
public var number: Double?  
-
-
-

Returns the Double value of this JS value if the type is number. -If not, returns nil.

- -
-
-
-

- object -

-
-
public var object: JSObject?  
-
-
-

Returns the JSObject of this JS value if its type is object. -If not, returns nil.

- -
-
-
-

- function -

-
-
public var function: JSFunction?  
-
-
-

Returns the JSFunction of this JS value if its type is function. -If not, returns nil.

- -
-
-
-

- symbol -

-
-
public var symbol: JSSymbol?  
-
-
-

Returns the JSSymbol of this JS value if its type is function. -If not, returns nil.

- -
-
-
-

- big​Int -

-
-
public var bigInt: JSBigInt?  
-
-
-

Returns the JSBigInt of this JS value if its type is function. -If not, returns nil.

- -
-
-
-

- is​Null -

-
-
public var isNull: Bool  
-
-
-

Returns the true if this JS value is null. -If not, returns false.

- -
-
-
-

- is​Undefined -

-
-
public var isUndefined: Bool  
-
-
-

Returns the true if this JS value is undefined. -If not, returns false.

- -
-
-
-

- description -

-
-
public var description: String  
-
-
-
-
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
-
-
-

- from​JSValue() -

-
-
func fromJSValue<Type>() -> Type? where Type: ConstructibleFromJSValue  
-
-
-
-

- string(_:​) -

-
-
static func string(_ value: String) -> JSValue  
-
-
-
-

- function(_:​) -

-
-
@available(*, deprecated, message: "Please create JSClosure directly and manage its lifetime manually.")
-    static func function(_ body: @escaping ([JSValue]) -> JSValue) -> JSValue  
-
-
-

Deprecated: Please create JSClosure directly and manage its lifetime manually.

- -
-
-

Migrate this usage

- -
button.addEventListener!("click", JSValue.function { _ in
-    ...
-    return JSValue.undefined
-})
-
-

into below code.

- -
let eventListenter = JSClosure { _ in
-    ...
-    return JSValue.undefined
-}
-
-button.addEventListener!("click", JSValue.function(eventListenter))
-...
-button.removeEventListener!("click", JSValue.function(eventListenter))
-eventListenter.release()
-
-
-
-
-

- function(_:​) -

-
-
@available(*, deprecated, renamed: "object", message: "JSClosure is no longer a subclass of JSFunction. Use .object(closure) instead.")
-    static func function(_ closure: JSClosure) -> JSValue  
-
-
-
-

- is​Instance​Of(_:​) -

-
-
func isInstanceOf(_ constructor: JSFunction) -> Bool  
-
-
-

Return true if this value is an instance of the passed constructor function. -Returns false for everything except objects and functions.

- -
-

Parameters

- - - - - - - - - - - - - - - - -
constructorJSFunction

The constructor function to check.

-
-

Returns

-

The result of instanceof in the JavaScript environment.

- -
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValueCodable/index.html b/JSValueCodable/index.html deleted file mode 100644 index 1ee917b59..000000000 --- a/JSValueCodable/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSValueCodable - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSValue​Codable -

- -
-
@available(*, deprecated, renamed: "JSValueCompatible")
-public typealias JSValueCodable = JSValueCompatible
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValueCompatible/index.html b/JSValueCompatible/index.html deleted file mode 100644 index 490f27d99..000000000 --- a/JSValueCompatible/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - JSValueCompatible - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValueConstructible/index.html b/JSValueConstructible/index.html deleted file mode 100644 index 23f1ba740..000000000 --- a/JSValueConstructible/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSValueConstructible - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSValue​Constructible -

- -
-
@available(*, deprecated, renamed: "ConstructibleFromJSValue")
-public typealias JSValueConstructible = ConstructibleFromJSValue
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValueConvertible/index.html b/JSValueConvertible/index.html deleted file mode 100644 index 07f1dd206..000000000 --- a/JSValueConvertible/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - JavaScriptKit - JSValueConvertible - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Typealias - JSValue​Convertible -

- -
-
@available(*, deprecated, renamed: "ConvertibleToJSValue")
-public typealias JSValueConvertible = ConvertibleToJSValue
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JSValueDecoder/index.html b/JSValueDecoder/index.html deleted file mode 100644 index 50d9940fd..000000000 --- a/JSValueDecoder/index.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - JavaScriptKit - JSValueDecoder - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - JSValue​Decoder -

- -
-
public class JSValueDecoder  
-
-
-

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

- -
- -
-

Initializers

- -
-

- init() -

-
-
public init()  
-
-
-

Initializes a new JSValueDecoder.

- -
-
-
-
-

Methods

- -
-

- decode(_:​from:​user​Info:​) -

-
-
public func decode<T>(
-        _: T.Type = T.self,
-        from value: JSValue,
-        userInfo: [CodingUserInfoKey: Any] = [:]
-    ) throws -> T where T: Decodable  
-
-
-

Decodes a top-level value of the given type from the given JavaScript value representation.

- -
-

Parameters

- - - - - - - - - - - - - - - - - - - - - -
T

The type of the value to decode.

-
valueJSValue

The JSValue to decode from.

-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/JavaScriptEventLoop/index.html b/JavaScriptEventLoop/index.html deleted file mode 100644 index fb7748784..000000000 --- a/JavaScriptEventLoop/index.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - JavaScriptKit - JavaScriptEventLoop - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Class - Java​Script​Event​Loop -

- -
-
@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *)
-public final class JavaScriptEventLoop: SerialExecutor, @unchecked Sendable  
-
-
-

Singleton type responsible for integrating JavaScript event loop as a Swift concurrency executor, conforming to -SerialExecutor protocol from the standard library. To utilize it:

- -
-
-
    -
  1. Make sure that your target depends on JavaScriptEventLoop in your Packages.swift:
  2. -
- -
.target(
-    name: "JavaScriptKitExample",
-    dependencies: [
-        "JavaScriptKit",
-        .product(name: "JavaScriptEventLoop", package: "JavaScriptKit")
-    ]
-)
-
-
    -
  1. Add an explicit import in the code that executes *before you start using await and/or Task -APIs (most likely in main.swift):
  2. -
- -
import JavaScriptEventLoop
-
-
    -
  1. Run this function *before you start using await and/or Task APIs (again, most likely in -main.swift):
  2. -
- -
JavaScriptEventLoop.installGlobalExecutor()
-
-
-
- -
- - - - - - -%69 - - - -JavaScriptEventLoop - - -JavaScriptEventLoop - - - - - -@unchecked Sendable - -@unchecked Sendable - - - -JavaScriptEventLoop->@unchecked Sendable - - - - - -SerialExecutor - -SerialExecutor - - - -JavaScriptEventLoop->SerialExecutor - - - - - - - - -
-

Conforms To

-
-
@unchecked Sendable
-
SerialExecutor
-
-
-
-

Properties

- -
-

- queue​Microtask -

-
-
public var queueMicrotask: @Sendable (@escaping () -> Void) -> Void
-
-
-

A function that queues a given closure as a microtask into JavaScript event loop. -See also: https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide

- -
-
-
-

- set​Timeout -

-
-
public var setTimeout: @Sendable (Double, @escaping () -> Void) -> Void
-
-
-

A function that invokes a given closure after a specified number of milliseconds.

- -
-
-
-

- shared -

-
-
public static let shared: JavaScriptEventLoop  
-
-
-

A singleton instance of the Executor

- -
-
-
-
-

Methods

- -
-

- install​Global​Executor() -

-
-
public static func installGlobalExecutor()  
-
-
-

Set JavaScript event loop based executor to be the global executor -Note that this should be called before any of the jobs are created. -This installation step will be unnecessary after custom executor are -introduced officially. See also a draft proposal for custom -executors

- -
-
-
-

- enqueue(_:​) -

-
-
public func enqueue(_ job: UnownedJob)  
-
-
-
-

- as​Unowned​Serial​Executor() -

-
-
public func asUnownedSerialExecutor() -> UnownedSerialExecutor  
-
-
-
- - - -
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/Optional/index.html b/Optional/index.html deleted file mode 100644 index b6cbcdc5e..000000000 --- a/Optional/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - JavaScriptKit - Optional - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - Optional -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> Self?  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/RawJSValue/index.html b/RawJSValue/index.html deleted file mode 100644 index 46e8853c9..000000000 --- a/RawJSValue/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - JavaScriptKit - RawJSValue - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - RawJSValue -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/SignedInteger/index.html b/SignedInteger/index.html deleted file mode 100644 index 6eaa2f0ef..000000000 --- a/SignedInteger/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - JavaScriptKit - SignedInteger - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/String/index.html b/String/index.html deleted file mode 100644 index 04d5495aa..000000000 --- a/String/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - JavaScriptKit - String - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - String -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-

Methods

- -
-

- construct(from:​) -

-
-
public static func construct(from value: JSValue) -> String?  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/TypedArrayElement/index.html b/TypedArrayElement/index.html deleted file mode 100644 index bab8b2655..000000000 --- a/TypedArrayElement/index.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - JavaScriptKit - TypedArrayElement - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Protocol - Typed​Array​Element -

- -
-
public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValue  
-
-
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

- -
-
- -
- - - - - - -%63 - - - -TypedArrayElement - - -TypedArrayElement - - - - - -ConstructibleFromJSValue - - -ConstructibleFromJSValue - - - - - -TypedArrayElement->ConstructibleFromJSValue - - - - - -ConvertibleToJSValue - - -ConvertibleToJSValue - - - - - -TypedArrayElement->ConvertibleToJSValue - - - - - - - - -
-

Conforms To

-
-
ConstructibleFromJSValue
-

Types conforming to this protocol can be constructed from JSValue.

-
-
ConvertibleToJSValue
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

-
-
-
- - - -
-

Requirements

- -
-

- typed​Array​Class -

-
-
static var typedArrayClass: JSFunction  
-
-
-

The constructor function for the TypedArray class for this particular kind of number

- -
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UInt/index.html b/UInt/index.html deleted file mode 100644 index 70404eb50..000000000 --- a/UInt/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - JavaScriptKit - UInt - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - UInt -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass: JSFunction =
-        valueForBitWidth(typeName: "UInt", bitWidth: Int.bitWidth, when32: JSObject.global.Uint32Array).function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UInt16/index.html b/UInt16/index.html deleted file mode 100644 index c38273a2e..000000000 --- a/UInt16/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - UInt16 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - UInt16 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Uint16Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UInt32/index.html b/UInt32/index.html deleted file mode 100644 index e767149b4..000000000 --- a/UInt32/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - UInt32 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - UInt32 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Uint32Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UInt64/index.html b/UInt64/index.html deleted file mode 100644 index 81d900c55..000000000 --- a/UInt64/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - UInt64 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - UInt64 -

-
-

Properties

- -
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.BigUint64Array.function! 
-
-
-
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UInt8/index.html b/UInt8/index.html deleted file mode 100644 index 5fcb11c8f..000000000 --- a/UInt8/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - JavaScriptKit - UInt8 - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

- Extensions on - UInt8 -

-
-

Properties

- -
-

- js​Value -

-
-
public var jsValue: JSValue  
-
-
-
-

- typed​Array​Class -

-
-
public static var typedArrayClass = JSObject.global.Uint8Array.function! 
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/UnsignedInteger/index.html b/UnsignedInteger/index.html deleted file mode 100644 index 86106d2c5..000000000 --- a/UnsignedInteger/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - JavaScriptKit - UnsignedInteger - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
- -
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/all.css b/all.css deleted file mode 100644 index ac210864e..000000000 --- a/all.css +++ /dev/null @@ -1 +0,0 @@ -:root{--system-red:#ff3b30;--system-orange:#ff9500;--system-yellow:#fc0;--system-green:#34c759;--system-teal:#5ac8fa;--system-blue:#007aff;--system-indigo:#5856d6;--system-purple:#af52de;--system-pink:#ff2d55;--system-gray:#8e8e93;--system-gray2:#aeaeb2;--system-gray3:#c7c7cc;--system-gray4:#d1d1d6;--system-gray5:#e5e5ea;--system-gray6:#f2f2f7;--label:#000;--secondary-label:#3c3c43;--tertiary-label:#48484a;--quaternary-label:#636366;--placeholder-text:#8e8e93;--link:#007aff;--separator:#e5e5ea;--opaque-separator:#c6c6c8;--system-fill:#787880;--secondary-system-fill:#787880;--tertiary-system-fill:#767680;--quaternary-system-fill:#747480;--system-background:#fff;--secondary-system-background:#f2f2f7;--tertiary-system-background:#fff;--system-grouped-background:#f2f2f7;--secondary-system-grouped-background:#fff;--tertiary-system-grouped-background:#f2f2f7}@supports (color:color(display-p3 1 1 1)){:root{--system-red:color(display-p3 1 0.2314 0.1882);--system-orange:color(display-p3 1 0.5843 0);--system-yellow:color(display-p3 1 0.8 0);--system-green:color(display-p3 0.2039 0.7804 0.349);--system-teal:color(display-p3 0.3529 0.7843 0.9804);--system-blue:color(display-p3 0 0.4784 1);--system-indigo:color(display-p3 0.3451 0.3373 0.8392);--system-purple:color(display-p3 0.6863 0.3216 0.8706);--system-pink:color(display-p3 1 0.1765 0.3333);--system-gray:color(display-p3 0.5569 0.5569 0.5765);--system-gray2:color(display-p3 0.6824 0.6824 0.698);--system-gray3:color(display-p3 0.7804 0.7804 0.8);--system-gray4:color(display-p3 0.8196 0.8196 0.8392);--system-gray5:color(display-p3 0.898 0.898 0.9176);--system-gray6:color(display-p3 0.949 0.949 0.9686);--label:color(display-p3 0 0 0);--secondary-label:color(display-p3 0.2353 0.2353 0.2627);--tertiary-label:color(display-p3 0.2823 0.2823 0.2901);--quaternary-label:color(display-p3 0.4627 0.4627 0.5019);--placeholder-text:color(display-p3 0.5568 0.5568 0.5764);--link:color(display-p3 0 0.4784 1);--separator:color(display-p3 0.898 0.898 0.9176);--opaque-separator:color(display-p3 0.7765 0.7765 0.7843);--system-fill:color(display-p3 0.4706 0.4706 0.502);--secondary-system-fill:color(display-p3 0.4706 0.4706 0.502);--tertiary-system-fill:color(display-p3 0.4627 0.4627 0.502);--quaternary-system-fill:color(display-p3 0.4549 0.4549 0.502);--system-background:color(display-p3 1 1 1);--secondary-system-background:color(display-p3 0.949 0.949 0.9686);--tertiary-system-background:color(display-p3 1 1 1);--system-grouped-background:color(display-p3 0.949 0.949 0.9686);--secondary-system-grouped-background:color(display-p3 1 1 1);--tertiary-system-grouped-background:color(display-p3 0.949 0.949 0.9686)}}:root{--large-title:600 32pt/39pt sans-serif;--title-1:600 26pt/32pt sans-serif;--title-2:600 20pt/25pt sans-serif;--title-3:500 18pt/23pt sans-serif;--headline:500 15pt/20pt sans-serif;--body:300 15pt/20pt sans-serif;--callout:300 14pt/19pt sans-serif;--subhead:300 13pt/18pt sans-serif;--footnote:300 12pt/16pt sans-serif;--caption-1:300 11pt/13pt sans-serif;--caption-2:300 11pt/13pt sans-serif;--icon-associatedtype:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-case:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--icon-class:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--icon-enumeration:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--icon-extension:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--icon-function:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0 1 30 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 1 1 0-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0 1 70 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 1 1 .05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--icon-method:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--icon-operator:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Ccircle fill='%23fff' cx='50' cy='50' r='16'/%3E%3C/svg%3E");--icon-property:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--icon-protocol:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 0 1 1.92.35V65a5.69 5.69 0 0 0-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--icon-structure:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--icon-typealias:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--icon-variable:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71 19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E")}body,button,input,select,textarea{-moz-font-feature-settings:"kern";-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;direction:ltr;font-synthesis:none;text-align:left}h1:first-of-type,h2:first-of-type,h3:first-of-type,h4:first-of-type,h5:first-of-type,h6:first-of-type{margin-top:0}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-family:inherit;font-weight:inherit}h1 img,h2 img,h3 img,h4 img,h5 img,h6 img{display:inline-block;margin:0 .5em .2em 0;vertical-align:middle}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}img+h1{margin-top:.5em}img+h1,img+h2,img+h3,img+h4,img+h5,img+h6{margin-top:.3em}:is(h1)+:is(h1),:is(h1)+:is(h2),:is(h1)+:is(h3),:is(h1)+:is(h4),:is(h1)+:is(h5),:is(h1)+:is(h6),:is(h2)+:is(h1),:is(h2)+:is(h2),:is(h2)+:is(h3),:is(h2)+:is(h4),:is(h2)+:is(h5),:is(h2)+:is(h6),:is(h3)+:is(h1),:is(h3)+:is(h2),:is(h3)+:is(h3),:is(h3)+:is(h4),:is(h3)+:is(h5),:is(h3)+:is(h6),:is(h4)+:is(h1),:is(h4)+:is(h2),:is(h4)+:is(h3),:is(h4)+:is(h4),:is(h4)+:is(h5),:is(h4)+:is(h6),:is(h5)+:is(h1),:is(h5)+:is(h2),:is(h5)+:is(h3),:is(h5)+:is(h4),:is(h5)+:is(h5),:is(h5)+:is(h6),:is(h6)+:is(h1),:is(h6)+:is(h2),:is(h6)+:is(h3),:is(h6)+:is(h4),:is(h6)+:is(h5),:is(h6)+:is(h6){margin-top:.4em}h1+h1,h1+h2,h1+h3,h1+h4,h1+h5,h1+h6,h2+h1,h2+h2,h2+h3,h2+h4,h2+h5,h2+h6,h3+h1,h3+h2,h3+h3,h3+h4,h3+h5,h3+h6,h4+h1,h4+h2,h4+h3,h4+h4,h4+h5,h4+h6,h5+h1,h5+h2,h5+h3,h5+h4,h5+h5,h5+h6,h6+h1,h6+h2,h6+h3,h6+h4,h6+h5,h6+h6{margin-top:.4em}:is(p,ul,ol)+:is(h1),:is(p,ul,ol)+:is(h2),:is(p,ul,ol)+:is(h3),:is(p,ul,ol)+:is(h4),:is(p,ul,ol)+:is(h5),:is(p,ul,ol)+:is(h6){margin-top:1.6em}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}:is(p,ul,ol)+*{margin-top:.8em}:matches(p,ul,ol)+*{margin-top:.8em}ol,ul{margin-left:1.17647em}:matches(ul,ol) :matches(ul,ol){margin-bottom:0;margin-top:0}nav h2{-webkit-font-feature-settings:"c2sc";font-feature-settings:"c2sc";color:#3c3c43;color:var(--secondary-label);font-size:1rem;font-variant:small-caps;font-weight:600;text-transform:uppercase}nav ol,nav ul{list-style:none;margin:0}nav li li{font-size:smaller}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}b,strong{font-weight:600}.discussion,.summary{font:300 14pt/19pt sans-serif;font:var(--callout)}article>.discussion{margin-bottom:2em}.discussion .highlight{background:transparent;border:1px solid #e5e5ea;border:1px solid var(--separator);font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em;text-indent:0}cite,dfn,em,i{font-style:italic}:matches(h1,h2,h3) sup{font-size:.4em}sup a{color:inherit;vertical-align:inherit}sup a:hover{color:#007aff;color:var(--link);text-decoration:none}sub{line-height:1}abbr{border:0}:lang(ja),:lang(ko),:lang(th),:lang(zh){font-style:normal}:lang(ko){word-break:keep-all}form fieldset{margin:1em auto;max-width:450px;width:95%}form label{display:block;font-size:1em;font-weight:400;line-height:1.5em;margin-bottom:14px;position:relative;width:100%}input[type=email],input[type=number],input[type=password],input[type=tel],input[type=text],input[type=url],textarea{border:1px solid #e5e5ea;border:1px solid var(--separator);border-radius:4px;color:#333;font-family:inherit;font-size:100%;font-weight:400;height:34px;margin:0;padding:0 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=email],input[type=email]:focus,input[type=number],input[type=number]:focus,input[type=password],input[type=password]:focus,input[type=tel],input[type=tel]:focus,input[type=text],input[type=text]:focus,input[type=url],input[type=url]:focus,textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=email]:-moz-read-only,input[type=number]:-moz-read-only,input[type=password]:-moz-read-only,input[type=tel]:-moz-read-only,input[type=text]:-moz-read-only,input[type=url]:-moz-read-only,textarea:-moz-read-only{background:none;border:none;box-shadow:none;padding-left:0}input[type=email]:read-only,input[type=number]:read-only,input[type=password]:read-only,input[type=tel]:read-only,input[type=text]:read-only,input[type=url]:read-only,textarea:read-only{background:none;border:none;box-shadow:none;padding-left:0}::-webkit-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-moz-placeholder{color:#8e8e93;color:var(--placeholder-text)}::-ms-input-placeholder{color:#8e8e93;color:var(--placeholder-text)}::placeholder{color:#8e8e93;color:var(--placeholder-text)}textarea{-webkit-overflow-scrolling:touch;line-height:1.4737;min-height:134px;overflow-y:auto;resize:vertical;-webkit-transform:translateZ(0);transform:translateZ(0)}textarea,textarea:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select{background:transparent;border:none;border-radius:4px;cursor:pointer;font-family:inherit;font-size:1em;height:34px;margin:0;padding:0 1em;width:100%}select,select:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}select:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}input[type=file]{background:#fafafa;border-radius:4px;color:#333;cursor:pointer;font-family:inherit;font-size:100%;height:34px;margin:0;padding:6px 1em;position:relative;vertical-align:top;width:100%;z-index:1}input[type=file]:focus{border-color:#08c;box-shadow:0 0 0 3px rgba(0,136,204,.3);outline:0;z-index:9}button,button:focus,input[type=file]:focus,input[type=file]:focus:focus,input[type=reset],input[type=reset]:focus,input[type=submit],input[type=submit]:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none}:matches(button,input[type=reset],input[type=submit]){background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}:matches(button,input[type=reset],input[type=submit]):hover{background-color:#eee;background:linear-gradient(#fff,#eee);border-color:#d9d9d9}:matches(button,input[type=reset],input[type=submit]):active{background-color:#dcdcdc;background:linear-gradient(#f7f7f7,#dcdcdc);border-color:#d0d0d0}:matches(button,input[type=reset],input[type=submit]):disabled{background-color:#e3e3e3;background:linear-gradient(#fff,#e3e3e3);border-color:#d6d6d6;color:#0070c9}body{background:#f2f2f7;background:var(--system-grouped-background);color:#000;color:var(--label);font-family:ui-system,-apple-system,BlinkMacSystemFont,sans-serif;font:300 15pt/20pt sans-serif;font:var(--body)}h1{font:600 32pt/39pt sans-serif;font:var(--large-title)}h2{font:600 20pt/25pt sans-serif;font:var(--title-2)}h3{font:500 18pt/23pt sans-serif;font:var(--title-3)}h4,h5,h6{font:500 15pt/20pt sans-serif;font:var(--headline)}a{color:#007aff;color:var(--link)}label{font:300 14pt/19pt sans-serif;font:var(--callout)}input,label{display:block}input{margin-bottom:1em}hr{border:none;border-top:1px solid #e5e5ea;border-top:1px solid var(--separator);margin:1em 0}table{caption-side:bottom;font:300 11pt/13pt sans-serif;font:var(--caption-1);margin-bottom:2em;width:100%}td,th{padding:0 1em}th{font-weight:600;text-align:left}thead th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator)}tr:last-of-type td,tr:last-of-type th{border-bottom:none}td,th{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);color:#3c3c43;color:var(--secondary-label)}caption{color:#48484a;color:var(--tertiary-label);font:300 11pt/13pt sans-serif;font:var(--caption-2);margin-top:2em;text-align:left}.graph text,code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-weight:300}.graph>polygon{display:none}.graph text{fill:currentColor!important}.graph ellipse,.graph path,.graph polygon,.graph rect{stroke:currentColor!important}body{margin:1em auto;max-width:1280px;width:90vw}body>header{font:600 26pt/32pt sans-serif;font:var(--title-1);padding:.5em 0}body>header a{color:#000;color:var(--label)}body>header span{font-weight:400}body>header sup{font-size:small;font-weight:300;letter-spacing:.1ch;text-transform:uppercase}body>footer,body>header sup{color:#3c3c43;color:var(--secondary-label)}body>footer{clear:both;font:300 11pt/13pt sans-serif;font:var(--caption-1);padding:1em 0}@media screen and (max-width:768px){body{max-width:100%;width:96vw}body>header{font:500 18pt/23pt sans-serif;font:var(--title-3);padding:1em 0;text-align:left}body>nav{display:none}body>main{padding:0 1em}#relationships figure{display:none}section>[role=article][class] pre{margin-left:-1em;margin-right:-1em}section>[role=article][class] div{margin-left:-2em}}main,nav{overflow-x:auto}main{background:#fff;background:var(--system-background);border-radius:8px;padding:0 2em}main section{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}main section:last-of-type{border-bottom:none;margin-bottom:0}nav{float:right;margin-left:1em;max-height:100vh;max-width:14em;overflow:auto;padding:0 1em 3em;position:sticky;top:1em;width:20vw}nav a{color:#3c3c43;color:var(--secondary-label)}nav ul a{color:#48484a;color:var(--tertiary-label)}nav ol,nav ul{padding:0}nav ul{font:300 14pt/19pt sans-serif;font:var(--callout);margin-bottom:1em}nav ol>li>a{display:block;font-size:smaller;font:500 15pt/20pt sans-serif;font:var(--headline);margin:.5em 0}nav li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}blockquote{--link:#3c3c43;--link:var(--secondary-label);border-left:4px solid #e5e5ea;border-left:4px solid var(--separator);color:#3c3c43;color:var(--secondary-label);font-size:smaller;margin-left:0;padding-left:2em}blockquote a{text-decoration:underline}.discussion aside{--link:var(--accent-color);border:.25px solid #e5e5ea;border-left:6px solid #e5e5ea;border:.25px solid var(--separator);border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-left-width:6px;border-top-left-radius:8px;border-top-right-radius:8px;color:var(--accent-color);margin-bottom:1em;padding:.125em 1em}.discussion aside:before{-webkit-font-feature-settings:"c2sc";font-feature-settings:"c2sc";color:var(--accent-color);content:attr(title);font-variant:small-caps;text-transform:lowercase}.discussion aside>p{margin-bottom:.25em;margin-top:.25em}.discussion aside{--accent-color:#000049;--separator:#007aff;--separator:var(--system-blue);background:rgba(0,122,255,.01)}.discussion aside.author,.discussion aside.authors,.discussion aside.copyright,.discussion aside.date{--accent-color:#333;--separator:#787880;--separator:var(--system-fill);background:#fff;background:var(--system-background)}.discussion aside.attention,.discussion aside.important,.discussion aside.warning{--accent-color:#4c2502;--separator:#ff9500;--separator:var(--system-orange);background:rgba(255,149,0,.01)}.discussion aside.bug{--accent-color:#4e0029;--separator:#ff2d55;--separator:var(--system-pink);background:rgba(255,59,48,.01)}article{padding:2em 0 1em}article>.summary{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:2em;padding-bottom:1em}article>.summary:last-child{border-bottom:none}.parameters th{text-align:right}.parameters td{color:#3c3c43;color:var(--secondary-label)}.parameters th+td{text-align:center}dl{padding-top:1em}dt{font:500 15pt/20pt sans-serif;font:var(--headline)}dd{margin-bottom:1em;margin-left:2em}dd p{margin-top:0}.highlight{background:#f2f2f7;background:var(--secondary-system-background);border-radius:8px;font-size:.75em;margin-bottom:2em;overflow-x:auto;padding:1em 1em 1em 3em;text-indent:-2em;white-space:pre-wrap}.highlight .p{white-space:nowrap}.highlight .placeholder{color:#000;color:var(--label)}.highlight a{color:#8e8e93;color:var(--placeholder-text);text-decoration:underline}.highlight .attribute,.highlight .keyword,.highlight .literal{color:#af52de;color:var(--system-purple)}.highlight .number{color:#007aff;color:var(--system-blue)}.highlight .declaration{color:#5ac8fa;color:var(--system-teal)}.highlight .type{color:#5856d6;color:var(--system-indigo)}.highlight .directive{color:#ff9500;color:var(--system-orange)}.highlight .comment{color:#8e8e93;color:var(--system-gray)}main summary:hover{text-decoration:underline}figure{margin:2em 0;padding:1em 0}figure svg{display:block;height:auto!important;margin:0 auto;max-width:100%}h1 small{color:#636366;color:var(--quaternary-label);display:block;font-size:.5em;font-weight:400;line-height:1.5}h3 small{color:#48484a;color:var(--tertiary-label)}dd code,li code,p code{font-size:smaller}a code{text-decoration:underline}dl dt[class],nav li[class],section>[role=article][class]{background-image:var(--background-image);background-position:left .25em;background-repeat:no-repeat;background-size:1em;padding-left:3em}dl dt[class]{background-position-y:.125em}section>[role=article]{border-bottom:1px solid #e5e5ea;border-bottom:1px solid var(--separator);margin-bottom:1em;padding-bottom:1em;padding-left:2em!important}section>[role=article]:last-of-type{border-bottom:none;margin-bottom:0;padding-bottom:0}dl dt[class],nav li[class]{list-style:none;margin-bottom:.5em;text-indent:-1em}nav li[class]{padding-left:2.5em}.associatedtype{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-associatedtype);--link:#ff2d55;--link:var(--system-pink)}.case,.enumeration_case{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32H64.19C63.4 35 58.09 30.11 51 30.11c-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25C32 82.81 20.21 70.72 20.21 50z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-case);--link:#5ac8fa;--link:var(--system-teal)}.class{--background-image:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%239b98e6' height='90' rx='8' stroke='%235856d6' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='m20.21 50c0-20.7 11.9-32.79 30.8-32.79 16 0 28.21 10.33 28.7 25.32h-15.52c-.79-7.53-6.1-12.42-13.19-12.42-8.79 0-14.37 7.52-14.37 19.82s5.54 20 14.41 20c7.08 0 12.22-4.66 13.23-12.09h15.52c-.74 15.07-12.43 25-28.78 25-19.01-.03-30.8-12.12-30.8-32.84z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-class);--link:#5856d6;--link:var(--system-indigo)}.enumeration{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5.17' y='5'/%3E%3Cpath d='M71.9 81.71H28.43V18.29H71.9v13H44.56v12.62h25.71v11.87H44.56V68.7H71.9z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-enumeration);--link:#ff9500;--link:var(--system-orange)}.extension{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23eca95b' height='90' rx='8' stroke='%23e89234' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M54.43 81.93H20.51V18.07h33.92v12.26H32.61v13.8h20.45v11.32H32.61v14.22h21.82zM68.74 74.58h-.27l-2.78 7.35h-7.28L64 69.32l-6-12.54h8l2.74 7.3h.27l2.76-7.3h7.64l-6.14 12.54 5.89 12.61h-7.64z'/%3E%3C/g%3E%3C/svg%3E");--background-image:var(--icon-extension);--link:#ff9500;--link:var(--system-orange)}.function{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M24.25 75.66A5.47 5.47 0 0 1 30 69.93c1.55 0 3.55.41 6.46.41 3.19 0 4.78-1.55 5.46-6.65l1.5-10.14h-9.34a6 6 0 1 1 0-12h11.1l1.09-7.27C47.82 23.39 54.28 17.7 64 17.7c6.69 0 11.74 1.77 11.74 6.64A5.47 5.47 0 0 1 70 30.07c-1.55 0-3.55-.41-6.46-.41-3.14 0-4.73 1.51-5.46 6.65l-.78 5.27h11.44a6 6 0 1 1 .05 12H55.6l-1.78 12.11C52.23 76.61 45.72 82.3 36 82.3c-6.7 0-11.75-1.77-11.75-6.64z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-function);--link:#34c759;--link:var(--system-green)}.initializer,.method{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%235a98f8' height='90' rx='8' stroke='%232974ed' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M70.61 81.71v-39.6h-.31l-15.69 39.6h-9.22l-15.65-39.6h-.35v39.6H15.2V18.29h18.63l16 41.44h.36l16-41.44H84.8v63.42z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-method);--link:#007aff;--link:var(--system-blue)}.operator{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Ccircle fill='%23fff' cx='50' cy='50' r='16'/%3E%3C/svg%3E");--background-image:var(--icon-operator);--link:#34c759;--link:var(--system-green)}.property{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%2389c5e6' height='90' rx='8' stroke='%236bb7e1' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M52.31 18.29c13.62 0 22.85 8.84 22.85 22.46s-9.71 22.37-23.82 22.37H41v18.59H24.84V18.29zM41 51h7c6.85 0 10.89-3.56 10.89-10.2S54.81 30.64 48 30.64h-7z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-property);--link:#5ac8fa;--link:var(--system-teal)}.protocol{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23ff6682' height='90' rx='8' stroke='%23ff2d55' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M46.28 18.29c11.84 0 20 8.66 20 21.71s-8.44 21.71-20.6 21.71H34.87v20H22.78V18.29zM34.87 51.34H43c6.93 0 11-4 11-11.29S50 28.8 43.07 28.8h-8.2zM62 57.45h8v4.77h.16c.84-3.45 2.54-5.12 5.17-5.12a5.06 5.06 0 0 1 1.92.35V65a5.69 5.69 0 0 0-2.39-.51c-3.08 0-4.66 1.74-4.66 5.12v12.1H62z'/%3E%3C/g%3E%3C/svg%3E");--background-image:var(--icon-protocol);--link:#ff2d55;--link:var(--system-pink)}.structure{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23b57edf' height='90' rx='8' stroke='%239454c2' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M38.38 63c.74 4.53 5.62 7.16 11.82 7.16s10.37-2.81 10.37-6.68c0-3.51-2.73-5.31-10.24-6.76l-6.5-1.23C31.17 53.14 24.62 47 24.62 37.28c0-12.22 10.59-20.09 25.18-20.09 16 0 25.36 7.83 25.53 19.91h-15c-.26-4.57-4.57-7.29-10.42-7.29s-9.31 2.63-9.31 6.37c0 3.34 2.9 5.18 9.8 6.5l6.5 1.23C70.46 46.51 76.61 52 76.61 62c0 12.74-10 20.83-26.72 20.83-15.82 0-26.28-7.3-26.5-19.78z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-structure);--link:#af52de;--link:var(--system-purple)}.typealias{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M42 81.71V31.3H24.47v-13h51.06v13H58v50.41z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-typealias);--link:#34c759;--link:var(--system-green)}.variable{--background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%237ac673' height='90' rx='8' stroke='%235bb74f' stroke-miterlimit='10' stroke-width='4' width='90' x='5' y='5'/%3E%3Cpath d='M39.85 81.71 19.63 18.29H38l12.18 47.64h.35L62.7 18.29h17.67L60.15 81.71z' fill='%23fff'/%3E%3C/svg%3E");--background-image:var(--icon-variable);--link:#34c759;--link:var(--system-green)}.unknown{--link:#636366;--link:var(--quaternary-label);color:#007aff;color:var(--link)} \ No newline at end of file diff --git a/getJSValue(this_index_)/index.html b/getJSValue(this_index_)/index.html deleted file mode 100644 index 7482ed4b2..000000000 --- a/getJSValue(this_index_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - getJSValue(this:index:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -get​JSValue(this:​index:​) -

- -
-
public func getJSValue(this: JSObject, index: Int32) -> JSValue  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/getJSValue(this_name_)/index.html b/getJSValue(this_name_)/index.html deleted file mode 100644 index 152c13866..000000000 --- a/getJSValue(this_name_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - getJSValue(this:name:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -get​JSValue(this:​name:​) -

- -
-
public func getJSValue(this: JSObject, name: JSString) -> JSValue  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/getJSValue(this_symbol_)/index.html b/getJSValue(this_symbol_)/index.html deleted file mode 100644 index d8462c824..000000000 --- a/getJSValue(this_symbol_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - getJSValue(this:symbol:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -get​JSValue(this:​symbol:​) -

- -
-
public func getJSValue(this: JSObject, symbol: JSSymbol) -> JSValue  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/index.html b/index.html deleted file mode 100644 index 079265ea6..000000000 --- a/index.html +++ /dev/null @@ -1,556 +0,0 @@ - - - - - - JavaScriptKit - JavaScriptKit - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-
-

Classes

-
-
- - Java​Script​Event​Loop - -
-
-

Singleton type responsible for integrating JavaScript event loop as a Swift concurrency executor, conforming to -SerialExecutor protocol from the standard library. To utilize it:

- -
-
- - JSArray - -
-
-

A wrapper around the JavaScript Array -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- - JSArray.​Iterator - -
-
-

Iterator type for JSArray, conforming to IteratorProtocol from the standard library, which allows -easy iteration over elements of JSArray instances.

- -
-
- - JSDate - -
-
-

A wrapper around the JavaScript Date -class that -exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example -getMonth/setMonth etc accessor methods are converted to properties, but the rest of it matches -in the naming. Parts of the JavaScript Date API that are not consistent across browsers and JS -implementations are not exposed in a type-safe manner, you should access the underlying jsObject -property if you need those.

- -
-
- - JSError - -
-
-

A wrapper around the JavaScript Error -class that -exposes its properties in a type-safe way.

- -
-
- - JSPromise - -
-
-

A wrapper around the JavaScript Promise class

- -
-
- - JSTimer - -
-
-

This timer is an abstraction over setInterval -/ clearInterval and -setTimeout -/ clearTimeout -JavaScript functions. It intentionally doesn't match the JavaScript API, as a special care is -needed to hold a reference to the timer closure and to call JSClosure.release() on it when the -timer is deallocated. As a user, you have to hold a reference to a JSTimer instance for it to stay -valid. The JSTimer API is also intentionally trivial, the timer is started right away, and the -only way to invalidate the timer is to bring the reference count of the JSTimer instance to zero. -For invalidation you should either store the timer in an optional property and assign nil to it, -or deallocate the object that owns the timer.

- -
-
- - JSTyped​Array - -
-
-

A wrapper around all JavaScript TypedArray -classes -that exposes their properties in a type-safe way.

- -
-
- - JSUInt8Clamped​Array - -
-
-

A wrapper around the JavaScript Uint8ClampedArray -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- - JSBig​Int - -
-
-

A wrapper around the JavaScript BigInt -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- - JSOneshot​Closure - -
-
-

JSOneshotClosure is a JavaScript function that can be called only once. This class can be used -for optimized memory management when compared to the common JSClosure.

- -
-
- - JSClosure - -
-
-

JSClosure represents a JavaScript function the body of which is written in Swift. -This type can be passed as a callback handler to JavaScript functions.

- -
-
- - JSFunction - -
-
-

JSFunction represents a function in JavaScript and supports new object instantiation. -This type can be callable as a function using callAsFunction.

- -
-
- - JSObject - -
-
-

JSObject represents an object in JavaScript and supports dynamic member lookup. -Any member access like object.foo will dynamically request the JavaScript and Swift -runtime bridge library for a member with the specified name in this object.

- -
-
- - JSThrowing​Object - -
-
-

A JSObject wrapper that enables throwing method calls capturing this. -Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
-
- - JSSymbol - -
-
-

A wrapper around the JavaScript Symbol -class -that exposes its properties in a type-safe and Swifty way.

- -
-
- - JSThrowing​Function - -
-
-

A JSFunction wrapper that enables throwing function calls. -Exceptions produced by JavaScript functions will be thrown as JSValue.

- -
-
- - JSValue​Decoder - -
-
-

JSValueDecoder facilitates the decoding of JavaScript value into semantic Decodable types.

- -
-
-
-
-

Structures

-
-
- - JSString - -
-
-

JSString represents a string in JavaScript and supports bridging string between JavaScript and Swift.

- -
-
-
-
-

Enumerations

-
-
- - JSValue - -
-
-

JSValue represents a value in JavaScript.

- -
-
-
-
-

Protocols

-
-
- - Typed​Array​Element - -
-
-

A protocol that allows a Swift numeric type to be mapped to the JavaScript TypedArray that holds integers of its type

- -
-
- - Constructible​From​JSValue - -
-
-

Types conforming to this protocol can be constructed from JSValue.

- -
-
- - Convertible​ToJSValue - -
-
-

Objects that can be converted to a JavaScript value, preferably in a lossless manner.

- -
-
- - JSBig​Int​Extended - -
-
- -
-
- - JSClosure​Protocol - -
-
-

JSClosureProtocol wraps Swift closure objects for use in JavaScript. Conforming types -are responsible for managing the lifetime of the closure they wrap, but can delegate that -task to the user by requiring an explicit release() call.

- -
-
- - JSBridged​Type - -
-
-

Use this protocol when your type has no single JavaScript class. -For example, a union type of multiple classes or primitive values.

- -
-
- - JSBridged​Class - -
-
-

Conform to this protocol when your Swift class wraps a JavaScript class.

- -
-
-
-
-

Typealiases

-
-
- - JSValue​Compatible - -
-
- -
-
- - JSObject​Ref - -
-
- -
-
- - JSArray​Ref - -
-
- -
-
- - JSFunction​Ref - -
-
- -
-
- - JSValue​Convertible - -
-
- -
-
- - JSValue​Constructible - -
-
- -
-
- - JSValue​Codable - -
-
- -
-
-
-
-

Functions

-
-
- - get​JSValue(this:​name:​) - -
-
- -
-
- - set​JSValue(this:​name:​value:​) - -
-
- -
-
- - get​JSValue(this:​index:​) - -
-
- -
-
- - set​JSValue(this:​index:​value:​) - -
-
- -
-
- - get​JSValue(this:​symbol:​) - -
-
- -
-
- - set​JSValue(this:​symbol:​value:​) - -
-
- -
-
-
-
-

Extensions

-
-
- Array -
-
-
- BinaryFloatingPoint -
-
-
- Bool -
-
-
- Dictionary -
-
-
- Double -
-
-
- Float -
-
-
- Float32 -
-
-
- Float64 -
-
-
- Int -
-
-
- Int16 -
-
-
- Int32 -
-
-
- Int64 -
-
-
- Int8 -
-
-
- Optional -
-
-
- RawJSValue -
-
-
- SignedInteger -
-
-
- String -
-
-
- UInt -
-
-
- UInt16 -
-
-
- UInt32 -
-
-
- UInt64 -
-
-
- UInt8 -
-
-
- UnsignedInteger -
-
-
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/setJSValue(this_index_value_)/index.html b/setJSValue(this_index_value_)/index.html deleted file mode 100644 index cc2e3e834..000000000 --- a/setJSValue(this_index_value_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - setJSValue(this:index:value:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -set​JSValue(this:​index:​value:​) -

- -
-
public func setJSValue(this: JSObject, index: Int32, value: JSValue)  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/setJSValue(this_name_value_)/index.html b/setJSValue(this_name_value_)/index.html deleted file mode 100644 index 05506a37c..000000000 --- a/setJSValue(this_name_value_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - setJSValue(this:name:value:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -set​JSValue(this:​name:​value:​) -

- -
-
public func setJSValue(this: JSObject, name: JSString, value: JSValue)  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - diff --git a/setJSValue(this_symbol_value_)/index.html b/setJSValue(this_symbol_value_)/index.html deleted file mode 100644 index 7c2304986..000000000 --- a/setJSValue(this_symbol_value_)/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - JavaScriptKit - setJSValue(this:symbol:value:) - - - -
- - - JavaScriptKit - - Documentation - -
- - - - - -
-
-

-Function -set​JSValue(this:​symbol:​value:​) -

- -
-
public func setJSValue(this: JSObject, symbol: JSSymbol, value: JSValue)  
-
-
-
- -
-

- Generated on using swift-doc 1.0.0-rc.1. -

-
- - From 028c9782b8fd54aed5c91b2e7ce7801584cb2daa Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Wed, 7 Feb 2024 17:05:54 +0900 Subject: [PATCH 148/148] Redirect to https://swiftpackageindex.com --- 404.html | 3 ++ Gemfile | 5 +++ Gemfile.lock | 72 ++++++++++++++++++++++++++++++++++++++++++ _config.yml | 2 ++ _layouts/redirect.html | 14 ++++++++ index.md | 3 ++ 6 files changed, 99 insertions(+) create mode 100644 404.html create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 _config.yml create mode 100644 _layouts/redirect.html create mode 100644 index.md diff --git a/404.html b/404.html new file mode 100644 index 000000000..af1942659 --- /dev/null +++ b/404.html @@ -0,0 +1,3 @@ +--- +redirect_to: https://swiftpackageindex.com/swiftwasm/JavaScriptKit/main/documentation/javascriptkit +--- diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..a2534df0e --- /dev/null +++ b/Gemfile @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +gem "jekyll-redirect-from" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..1aa6fe1a1 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,72 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) + colorator (1.1.0) + concurrent-ruby (1.2.3) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.16.3) + forwardable-extended (2.6.0) + google-protobuf (3.25.2-arm64-darwin) + http_parser.rb (0.8.0) + i18n (1.14.1) + concurrent-ruby (~> 1.0) + jekyll (4.3.3) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 1.0) + jekyll-sass-converter (>= 2.0, < 4.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.3, >= 2.3.1) + kramdown-parser-gfm (~> 1.0) + liquid (~> 4.0) + mercenary (>= 0.3.6, < 0.5) + pathutil (~> 0.9) + rouge (>= 3.0, < 5.0) + safe_yaml (~> 1.0) + terminal-table (>= 1.8, < 4.0) + webrick (~> 1.7) + jekyll-redirect-from (0.16.0) + jekyll (>= 3.3, < 5.0) + jekyll-sass-converter (3.0.0) + sass-embedded (~> 1.54) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.4) + listen (3.8.0) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.4.0) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (5.0.4) + rb-fsevent (0.11.2) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.6) + rouge (4.2.0) + safe_yaml (1.0.5) + sass-embedded (1.70.0-arm64-darwin) + google-protobuf (~> 3.25) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + unicode-display_width (2.5.0) + webrick (1.8.1) + +PLATFORMS + arm64-darwin-22 + +DEPENDENCIES + jekyll-redirect-from + +BUNDLED WITH + 2.4.1 diff --git a/_config.yml b/_config.yml new file mode 100644 index 000000000..cd1934b24 --- /dev/null +++ b/_config.yml @@ -0,0 +1,2 @@ +plugins: + - jekyll-redirect-from diff --git a/_layouts/redirect.html b/_layouts/redirect.html new file mode 100644 index 000000000..c8e7ea83a --- /dev/null +++ b/_layouts/redirect.html @@ -0,0 +1,14 @@ + + + + +Redirecting... + + + + +

Redirecting...

+ Click here if you are not redirected. + + + diff --git a/index.md b/index.md new file mode 100644 index 000000000..af1942659 --- /dev/null +++ b/index.md @@ -0,0 +1,3 @@ +--- +redirect_to: https://swiftpackageindex.com/swiftwasm/JavaScriptKit/main/documentation/javascriptkit +---