├── .github ├── FUNDING.yml └── workflows │ └── swift.yml ├── .gitignore ├── .swiftlint.yml ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcbaselines │ └── InkableTests.xcbaseline │ ├── EBF91977-D8A5-401F-88B3-07A7841B4E7F.plist │ └── Info.plist ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DebugView.swift │ ├── EventListViewController.swift │ ├── Extensions │ │ ├── UIColor+Extensions.swift │ │ └── UITouch+Extensions.swift │ ├── Info.plist │ ├── InkViewController.swift │ ├── Model │ │ ├── InkModel.swift │ │ ├── Notifications.swift │ │ └── ViewSettings.swift │ ├── SceneDelegate.swift │ ├── SettingsViewController.swift │ ├── SplitViewController.swift │ └── View Layers │ │ ├── BezierView.swift │ │ ├── PointsView.swift │ │ └── PolylineView.swift └── Package.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── Inkable │ ├── Documentation.docc │ └── Inkable.md │ ├── Extensions │ ├── UIBezierPath+Elements.swift │ └── UITouch+Extensions.swift │ ├── External │ ├── ColorCodable │ │ ├── ColorCodable.swift │ │ └── LICENSE │ └── OrderedSet │ │ ├── LICENSE │ │ └── OrderedSet.swift │ ├── Gestures │ └── TouchEventGestureRecognizer.swift │ ├── Helpers │ └── MinMaxIndex.swift │ ├── Inkable.swift │ └── Model │ ├── BezierSmoothers │ ├── AntigrainSmoother.swift │ ├── LineSmoother.swift │ └── Smoother.swift │ ├── BezierStream.swift │ ├── Polyline.swift │ ├── PolylineFilters │ ├── IterativeDouglasPeucker.swift │ ├── NaiveDouglasPeucker.swift │ ├── NaivePointDistance.swift │ ├── NaiveSavitzkyGolay.swift │ └── SavitzkyGolay.swift │ ├── PolylineStream.swift │ ├── ProducerConsumer.swift │ ├── TouchEvent.swift │ ├── TouchEventStream.swift │ ├── TouchPath.swift │ └── TouchPathStream.swift ├── TODO.md ├── Tests └── InkableTests │ ├── AntigrainSmootherTests.swift │ ├── BezierStreamTests.swift │ ├── DouglasPeuckerTests.swift │ ├── HelperTests.swift │ ├── PolylineTests.swift │ ├── ReplayEventTests.swift │ ├── SavitzkyGolayTests.swift │ ├── TestHelpers.swift │ ├── TestsOfTests.swift │ ├── TouchPathTests.swift │ ├── events.json │ ├── pencil-antigrain.json │ ├── pencil-antigrain2.json │ ├── pencil-error.json │ └── unknown-polyline-index.json ├── chart ├── example.png ├── graph.png └── index.html └── docs ├── css ├── documentation-topic.de084985.css ├── documentation-topic~topic~tutorials-overview.67b822e0.css ├── index.47bc740e.css ├── topic.2eb01958.css └── tutorials-overview.8754eb09.css ├── data └── documentation │ ├── inkable.json │ └── inkable │ ├── ==(_:_:).json │ ├── antigrainsmoother.json │ ├── antigrainsmoother │ ├── element(for:at:).json │ ├── elementindexes(for:at:with:)-6ac6g.json │ ├── elementindexes(for:at:with:)-7eekx.json │ ├── init(smoothfactor:).json │ └── maxindex(for:).json │ ├── bezierstream.json │ ├── bezierstream │ ├── addconsumer(_:)-1n3d3.json │ ├── addconsumer(_:)-i23t.json │ ├── consume(_:).json │ ├── consumes.json │ ├── delta.json │ ├── delta │ │ ├── !=(_:_:).json │ │ ├── addedbezierpath(index:).json │ │ ├── completedbezierpath(index:).json │ │ ├── debugdescription.json │ │ ├── equatable-implementations.json │ │ ├── unhandled(event:).json │ │ └── updatedbezierpath(index:updatedindexes:).json │ ├── element.json │ ├── element │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── curveto(point:ctrl1:ctrl2:).json │ │ ├── debugdescription.json │ │ ├── equatable-implementations.json │ │ ├── lineto(point:).json │ │ └── moveto(point:).json │ ├── init(smoother:).json │ ├── nextstep(_:).json │ ├── paths.json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── producerconsumer-implementations.json │ ├── produces.json │ ├── produces │ │ ├── deltas.json │ │ ├── empty.json │ │ ├── init(paths:deltas:).json │ │ └── paths.json │ └── reset().json │ ├── codablecolor.json │ ├── codablecolor │ ├── decodable-implementations.json │ ├── encodable-implementations.json │ ├── encode(to:).json │ └── init(from:).json │ ├── consumer.json │ ├── consumer │ ├── consume(_:).json │ ├── consumes.json │ └── reset().json │ ├── drawevent.json │ ├── drawevent │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── encode(to:).json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashable-implementations.json │ ├── identifier-swift.property.json │ ├── identifier-swift.typealias.json │ ├── init(from:).json │ └── init(identifier:).json │ ├── estimationupdateindex.json │ ├── gesturecallbackevent.json │ ├── gesturecallbackevent │ ├── init().json │ ├── init(from:).json │ └── init(identifier:).json │ ├── linesmoother.json │ ├── linesmoother │ ├── element(for:at:).json │ ├── elementindexes(for:at:with:)-1iumq.json │ ├── elementindexes(for:at:with:)-2mx1z.json │ ├── init().json │ └── maxindex(for:).json │ ├── minmaxindex.json │ ├── minmaxindex │ ├── !=(_:_:).json │ ├── allsatisfy(_:).json │ ├── asindexset().json │ ├── compactmap(_:).json │ ├── compare(_:_:).json │ ├── contains(_:).json │ ├── contains(where:).json │ ├── count.json │ ├── drop(while:).json │ ├── dropfirst(_:).json │ ├── droplast(_:).json │ ├── elementsequal(_:).json │ ├── elementsequal(_:by:).json │ ├── enumerated().json │ ├── equatable-implementations.json │ ├── filter(_:).json │ ├── first(where:).json │ ├── first.json │ ├── flatmap(_:)-3t1l.json │ ├── flatmap(_:)-42pm4.json │ ├── foreach(_:).json │ ├── formatted(_:).json │ ├── init().json │ ├── init(_:)-15s7t.json │ ├── init(_:)-3232o.json │ ├── init(_:)-35mg8.json │ ├── init(_:)-9ffku.json │ ├── init(_:)-9sqn1.json │ ├── insert(_:).json │ ├── insert(integersin:).json │ ├── iterator.json │ ├── iterator │ │ ├── element.json │ │ └── next().json │ ├── last.json │ ├── lazy.json │ ├── lexicographicallyprecedes(_:).json │ ├── lexicographicallyprecedes(_:by:).json │ ├── makeiterator().json │ ├── map(_:).json │ ├── max().json │ ├── max(by:).json │ ├── min().json │ ├── min(by:).json │ ├── null.json │ ├── prefix(_:).json │ ├── prefix(while:).json │ ├── publisher.json │ ├── reduce(_:_:).json │ ├── reduce(into:_:).json │ ├── remove(_:).json │ ├── reversed().json │ ├── sequence-implementations.json │ ├── shuffled().json │ ├── shuffled(using:).json │ ├── sorted().json │ ├── sorted(by:).json │ ├── sorted(using:)-2t1zv.json │ ├── sorted(using:)-4fwfw.json │ ├── split(maxsplits:omittingemptysubsequences:whereseparator:).json │ ├── split(separator:maxsplits:omittingemptysubsequences:).json │ ├── starts(with:).json │ ├── starts(with:by:).json │ ├── suffix(_:).json │ ├── underestimatedcount.json │ └── withcontiguousstorageifavailable(_:).json │ ├── naivedouglaspeucker.json │ ├── naivedouglaspeucker │ ├── addconsumer(_:)-1807p.json │ ├── addconsumer(_:)-64azw.json │ ├── consume(_:).json │ ├── consumes.json │ ├── enabled.json │ ├── init().json │ ├── nextstep(_:).json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── producerconsumer-implementations.json │ ├── produces.json │ └── reset().json │ ├── naivepointdistance.json │ ├── naivepointdistance │ ├── addconsumer(_:)-2lpg3.json │ ├── addconsumer(_:)-7u689.json │ ├── consume(_:).json │ ├── consumes.json │ ├── enabled.json │ ├── init().json │ ├── nextstep(_:).json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── producerconsumer-implementations.json │ ├── produces.json │ └── reset().json │ ├── naivesavitzkygolay.json │ ├── naivesavitzkygolay │ ├── addconsumer(_:)-6rbps.json │ ├── addconsumer(_:)-7epgp.json │ ├── consume(_:).json │ ├── consumes.json │ ├── enabled.json │ ├── init().json │ ├── lines.json │ ├── nextstep(_:).json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── producerconsumer-implementations.json │ ├── produces.json │ ├── reset().json │ ├── strength.json │ └── window.json │ ├── orderedset.json │ ├── orderedset │ ├── !=(_:_:).json │ ├── allsatisfy(_:).json │ ├── append(_:).json │ ├── append(contentsof:).json │ ├── bidirectionalcollection-implementations.json │ ├── collection-implementations.json │ ├── compactmap(_:).json │ ├── compare(_:_:).json │ ├── contains(_:).json │ ├── contains(where:).json │ ├── contents.json │ ├── count-2amrx.json │ ├── count-2sa6k.json │ ├── difference(from:).json │ ├── difference(from:by:).json │ ├── drop(while:).json │ ├── dropfirst(_:).json │ ├── droplast(_:).json │ ├── element.json │ ├── elementsequal(_:).json │ ├── elementsequal(_:by:).json │ ├── endindex.json │ ├── enumerated().json │ ├── equatable-implementations.json │ ├── expressiblebyarrayliteral-implementations.json │ ├── filter(_:).json │ ├── first(where:).json │ ├── first.json │ ├── firstindex(of:).json │ ├── firstindex(where:).json │ ├── flatmap(_:)-4voe4.json │ ├── flatmap(_:)-6pe6o.json │ ├── foreach(_:).json │ ├── formatted().json │ ├── formatted(_:).json │ ├── formindex(_:offsetby:).json │ ├── formindex(_:offsetby:limitedby:).json │ ├── formindex(after:).json │ ├── formindex(before:).json │ ├── index(_:offsetby:limitedby:).json │ ├── index(of:).json │ ├── index.json │ ├── indices.json │ ├── init().json │ ├── init(_:).json │ ├── init(arrayliteral:).json │ ├── insert(_:at:).json │ ├── insert(contentsof:at:).json │ ├── isempty-7kywf.json │ ├── isempty-7ok7e.json │ ├── joined().json │ ├── joined(separator:)-260lv.json │ ├── joined(separator:)-7m2yt.json │ ├── joined(separator:)-994o5.json │ ├── last(where:).json │ ├── last.json │ ├── lastindex(of:).json │ ├── lastindex(where:).json │ ├── lazy.json │ ├── lexicographicallyprecedes(_:).json │ ├── lexicographicallyprecedes(_:by:).json │ ├── makeiterator().json │ ├── map(_:)-dqe6.json │ ├── map(_:)-obr5.json │ ├── max().json │ ├── max(by:).json │ ├── min().json │ ├── min(by:).json │ ├── prefix(_:).json │ ├── prefix(through:).json │ ├── prefix(upto:).json │ ├── prefix(while:).json │ ├── publisher.json │ ├── randomaccesscollection-implementations.json │ ├── randomelement().json │ ├── randomelement(using:).json │ ├── reduce(_:_:).json │ ├── reduce(into:_:).json │ ├── remove(_:).json │ ├── remove(at:).json │ ├── removeall(keepingcapacity:).json │ ├── removefirst().json │ ├── removelast().json │ ├── replace(at:with:).json │ ├── replace(element:with:).json │ ├── replacesubrange(_:with:).json │ ├── reversed().json │ ├── sequence-implementations.json │ ├── shuffled().json │ ├── shuffled(using:).json │ ├── sorted().json │ ├── sorted(by:).json │ ├── sorted(using:)-1b283.json │ ├── sorted(using:)-5a8e9.json │ ├── split(maxsplits:omittingemptysubsequences:whereseparator:).json │ ├── split(separator:maxsplits:omittingemptysubsequences:).json │ ├── startindex.json │ ├── starts(with:).json │ ├── starts(with:by:).json │ ├── subscript(_:)-4dafp.json │ ├── subscript(_:)-6j69y.json │ ├── subscript(_:)-92zof.json │ ├── subscript(_:)-9z091.json │ ├── suffix(_:).json │ ├── suffix(from:).json │ ├── underestimatedcount-6pkhr.json │ ├── underestimatedcount-8n7uy.json │ └── withcontiguousstorageifavailable(_:).json │ ├── pointidentifier.json │ ├── polyline.json │ ├── polyline │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── bounds.json │ ├── equatable-implementations.json │ ├── init(points:).json │ ├── init(touchpath:).json │ ├── iscomplete.json │ ├── point.json │ ├── point │ │ ├── !=(_:_:).json │ │ ├── altitudeangle.json │ │ ├── azimuth.json │ │ ├── equatable-implementations.json │ │ ├── event.json │ │ ├── expectsupdate.json │ │ ├── force.json │ │ ├── init(touchpoint:).json │ │ ├── location.json │ │ ├── touchpoint.json │ │ ├── x.json │ │ └── y.json │ ├── points.json │ └── touchidentifier.json │ ├── polylinestream.json │ ├── polylinestream │ ├── addconsumer(_:)-68r65.json │ ├── addconsumer(_:)-7s5n2.json │ ├── consume(_:).json │ ├── consumes.json │ ├── delta.json │ ├── delta │ │ ├── !=(_:_:).json │ │ ├── addedpolyline(index:).json │ │ ├── completedpolyline(index:).json │ │ ├── debugdescription.json │ │ ├── equatable-implementations.json │ │ ├── unhandled(event:).json │ │ └── updatedpolyline(index:updatedindexes:).json │ ├── indextoindex.json │ ├── init().json │ ├── lines.json │ ├── nextstep(_:).json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── produces.json │ ├── produces │ │ ├── deltas.json │ │ ├── init(lines:deltas:).json │ │ └── lines.json │ └── reset().json │ ├── producer.json │ ├── producer │ ├── addconsumer(_:)-1prec.json │ ├── addconsumer(_:)-9q10n.json │ ├── nextstep(_:)-2bpwj.json │ ├── nextstep(_:)-4dl12.json │ ├── produces.json │ └── reset().json │ ├── producerconsumer.json │ ├── producerconsumer │ ├── consume(_:).json │ └── produce(with:).json │ ├── savitzkygolay.json │ ├── savitzkygolay │ ├── addconsumer(_:)-5x2nj.json │ ├── addconsumer(_:)-7i4o1.json │ ├── consume(_:).json │ ├── consumes.json │ ├── enabled.json │ ├── init().json │ ├── lines.json │ ├── nextstep(_:).json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── producerconsumer-implementations.json │ ├── produces.json │ ├── reset().json │ ├── strength.json │ └── window.json │ ├── smoother.json │ ├── smoother │ ├── element(for:at:).json │ ├── elementindexes(for:at:with:)-11wtp.json │ ├── elementindexes(for:at:with:)-91dsl.json │ └── maxindex(for:).json │ ├── touchevent.json │ ├── touchevent │ ├── altitudeangle.json │ ├── azimuth.json │ ├── azimuthunitvector.json │ ├── encode(to:).json │ ├── estimatedproperties.json │ ├── estimatedpropertiesexpectingupdates.json │ ├── estimationupdateindex.json │ ├── expectsazimuthupdate.json │ ├── expectsforceupdate.json │ ├── expectslocationupdate.json │ ├── expectsupdate.json │ ├── force.json │ ├── init(coalescedtouch:touch:in:isupdate:isprediction:).json │ ├── init(from:).json │ ├── init(identifier:).json │ ├── init(identifier:touchidentifier:timestamp:type:phase:force:maximumpossibleforce:altitudeangle:azimuthunitvector:azimuth:majorradius:majorradiustolerance:location:estimationupdateindex:estimatedproperties:estimatedpropertiesexpectingupdates:-8a9jf.json │ ├── init(touchidentifier:type:phase:force:location:estimationupdateindex:estimatedproperties:estimatedpropertiesexpectingupdates:isupdate:isprediction:).json │ ├── isprediction.json │ ├── issametouchas(event:).json │ ├── isupdate.json │ ├── location.json │ ├── majorradius.json │ ├── majorradiustolerance.json │ ├── maximumpossibleforce.json │ ├── phase.json │ ├── pointidentifier.json │ ├── timestamp.json │ ├── touchidentifier.json │ ├── type.json │ └── view.json │ ├── toucheventgesturerecognizer.json │ ├── toucheventgesturerecognizer │ ├── callback.json │ ├── canbeprevented(by:).json │ ├── gesturerecognizer(_:shouldberequiredtofailby:).json │ ├── gesturerecognizer(_:shouldrecognizesimultaneouslywith:).json │ ├── gesturerecognizer(_:shouldrequirefailureof:).json │ ├── init(target:action:).json │ ├── shouldberequiredtofail(by:).json │ ├── touchesbegan(_:with:).json │ ├── touchescancelled(_:with:).json │ ├── touchesended(_:with:).json │ ├── touchesestimatedpropertiesupdated(_:).json │ ├── touchesmoved(_:with:).json │ └── uigesturerecognizerdelegate-implementations.json │ ├── toucheventidentifier.json │ ├── toucheventstream.json │ ├── toucheventstream │ ├── addconsumer(_:)-15u8t.json │ ├── addconsumer(_:)-4j6h9.json │ ├── events.json │ ├── gesture.json │ ├── init().json │ ├── nextstep(_:).json │ ├── process(events:).json │ ├── producer-implementations.json │ ├── produces.json │ └── reset().json │ ├── touchpath.json │ ├── touchpath │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── bounds.json │ ├── equatable-implementations.json │ ├── hash(into:).json │ ├── hashable-implementations.json │ ├── iscomplete.json │ ├── point.json │ ├── point │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── equatable-implementations.json │ │ ├── event.json │ │ ├── events.json │ │ ├── expectsupdate.json │ │ ├── hash(into:).json │ │ ├── hashable-implementations.json │ │ ├── init(event:).json │ │ ├── init(from:).json │ │ └── isprediction.json │ ├── points.json │ └── touchidentifier.json │ ├── touchpathstream.json │ ├── touchpathstream │ ├── addconsumer(_:)-7drrb.json │ ├── addconsumer(_:)-9ev3r.json │ ├── consume(_:).json │ ├── consumes.json │ ├── delta.json │ ├── delta │ │ ├── !=(_:_:).json │ │ ├── addedtouchpath(index:).json │ │ ├── completedtouchpath(index:).json │ │ ├── debugdescription.json │ │ ├── equatable-implementations.json │ │ ├── unhandled(event:).json │ │ └── updatedtouchpath(index:updatedindexes:).json │ ├── init().json │ ├── nextstep(_:).json │ ├── paths.json │ ├── produce(with:).json │ ├── producer-implementations.json │ ├── produces.json │ ├── produces │ │ ├── deltas.json │ │ ├── init(paths:deltas:).json │ │ └── paths.json │ └── reset().json │ └── uitouchidentifier.json ├── documentation └── inkable │ ├── ==(_:_:) │ └── index.html │ ├── antigrainsmoother │ ├── element(for:at:) │ │ └── index.html │ ├── elementindexes(for:at:with:)-6ac6g │ │ └── index.html │ ├── elementindexes(for:at:with:)-7eekx │ │ └── index.html │ ├── index.html │ ├── init(smoothfactor:) │ │ └── index.html │ └── maxindex(for:) │ │ └── index.html │ ├── bezierstream │ ├── addconsumer(_:)-1n3d3 │ │ └── index.html │ ├── addconsumer(_:)-i23t │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── delta │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── addedbezierpath(index:) │ │ │ └── index.html │ │ ├── completedbezierpath(index:) │ │ │ └── index.html │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── unhandled(event:) │ │ │ └── index.html │ │ └── updatedbezierpath(index:updatedindexes:) │ │ │ └── index.html │ ├── element │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── curveto(point:ctrl1:ctrl2:) │ │ │ └── index.html │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── lineto(point:) │ │ │ └── index.html │ │ └── moveto(point:) │ │ │ └── index.html │ ├── index.html │ ├── init(smoother:) │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── paths │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── producerconsumer-implementations │ │ └── index.html │ ├── produces │ │ ├── deltas │ │ │ └── index.html │ │ ├── empty │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(paths:deltas:) │ │ │ └── index.html │ │ └── paths │ │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── codablecolor │ ├── decodable-implementations │ │ └── index.html │ ├── encodable-implementations │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── index.html │ └── init(from:) │ │ └── index.html │ ├── consumer │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── index.html │ └── reset() │ │ └── index.html │ ├── drawevent │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashable-implementations │ │ └── index.html │ ├── identifier-swift.property │ │ └── index.html │ ├── identifier-swift.typealias │ │ └── index.html │ ├── index.html │ ├── init(from:) │ │ └── index.html │ └── init(identifier:) │ │ └── index.html │ ├── estimationupdateindex │ └── index.html │ ├── gesturecallbackevent │ ├── index.html │ ├── init() │ │ └── index.html │ ├── init(from:) │ │ └── index.html │ └── init(identifier:) │ │ └── index.html │ ├── index.html │ ├── linesmoother │ ├── element(for:at:) │ │ └── index.html │ ├── elementindexes(for:at:with:)-1iumq │ │ └── index.html │ ├── elementindexes(for:at:with:)-2mx1z │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ └── maxindex(for:) │ │ └── index.html │ ├── minmaxindex │ ├── !=(_:_:) │ │ └── index.html │ ├── allsatisfy(_:) │ │ └── index.html │ ├── asindexset() │ │ └── index.html │ ├── compactmap(_:) │ │ └── index.html │ ├── compare(_:_:) │ │ └── index.html │ ├── contains(_:) │ │ └── index.html │ ├── contains(where:) │ │ └── index.html │ ├── count │ │ └── index.html │ ├── drop(while:) │ │ └── index.html │ ├── dropfirst(_:) │ │ └── index.html │ ├── droplast(_:) │ │ └── index.html │ ├── elementsequal(_:) │ │ └── index.html │ ├── elementsequal(_:by:) │ │ └── index.html │ ├── enumerated() │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── filter(_:) │ │ └── index.html │ ├── first(where:) │ │ └── index.html │ ├── first │ │ └── index.html │ ├── flatmap(_:)-3t1l │ │ └── index.html │ ├── flatmap(_:)-42pm4 │ │ └── index.html │ ├── foreach(_:) │ │ └── index.html │ ├── formatted(_:) │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── init(_:)-15s7t │ │ └── index.html │ ├── init(_:)-3232o │ │ └── index.html │ ├── init(_:)-35mg8 │ │ └── index.html │ ├── init(_:)-9ffku │ │ └── index.html │ ├── init(_:)-9sqn1 │ │ └── index.html │ ├── insert(_:) │ │ └── index.html │ ├── insert(integersin:) │ │ └── index.html │ ├── iterator │ │ ├── element │ │ │ └── index.html │ │ ├── index.html │ │ └── next() │ │ │ └── index.html │ ├── last │ │ └── index.html │ ├── lazy │ │ └── index.html │ ├── lexicographicallyprecedes(_:) │ │ └── index.html │ ├── lexicographicallyprecedes(_:by:) │ │ └── index.html │ ├── makeiterator() │ │ └── index.html │ ├── map(_:) │ │ └── index.html │ ├── max() │ │ └── index.html │ ├── max(by:) │ │ └── index.html │ ├── min() │ │ └── index.html │ ├── min(by:) │ │ └── index.html │ ├── null │ │ └── index.html │ ├── prefix(_:) │ │ └── index.html │ ├── prefix(while:) │ │ └── index.html │ ├── publisher │ │ └── index.html │ ├── reduce(_:_:) │ │ └── index.html │ ├── reduce(into:_:) │ │ └── index.html │ ├── remove(_:) │ │ └── index.html │ ├── reversed() │ │ └── index.html │ ├── sequence-implementations │ │ └── index.html │ ├── shuffled() │ │ └── index.html │ ├── shuffled(using:) │ │ └── index.html │ ├── sorted() │ │ └── index.html │ ├── sorted(by:) │ │ └── index.html │ ├── sorted(using:)-2t1zv │ │ └── index.html │ ├── sorted(using:)-4fwfw │ │ └── index.html │ ├── split(maxsplits:omittingemptysubsequences:whereseparator:) │ │ └── index.html │ ├── split(separator:maxsplits:omittingemptysubsequences:) │ │ └── index.html │ ├── starts(with:) │ │ └── index.html │ ├── starts(with:by:) │ │ └── index.html │ ├── suffix(_:) │ │ └── index.html │ ├── underestimatedcount │ │ └── index.html │ └── withcontiguousstorageifavailable(_:) │ │ └── index.html │ ├── naivedouglaspeucker │ ├── addconsumer(_:)-1807p │ │ └── index.html │ ├── addconsumer(_:)-64azw │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── enabled │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── producerconsumer-implementations │ │ └── index.html │ ├── produces │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── naivepointdistance │ ├── addconsumer(_:)-2lpg3 │ │ └── index.html │ ├── addconsumer(_:)-7u689 │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── enabled │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── producerconsumer-implementations │ │ └── index.html │ ├── produces │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── naivesavitzkygolay │ ├── addconsumer(_:)-6rbps │ │ └── index.html │ ├── addconsumer(_:)-7epgp │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── enabled │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── lines │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── producerconsumer-implementations │ │ └── index.html │ ├── produces │ │ └── index.html │ ├── reset() │ │ └── index.html │ ├── strength │ │ └── index.html │ └── window │ │ └── index.html │ ├── orderedset │ ├── !=(_:_:) │ │ └── index.html │ ├── allsatisfy(_:) │ │ └── index.html │ ├── append(_:) │ │ └── index.html │ ├── append(contentsof:) │ │ └── index.html │ ├── bidirectionalcollection-implementations │ │ └── index.html │ ├── collection-implementations │ │ └── index.html │ ├── compactmap(_:) │ │ └── index.html │ ├── compare(_:_:) │ │ └── index.html │ ├── contains(_:) │ │ └── index.html │ ├── contains(where:) │ │ └── index.html │ ├── contents │ │ └── index.html │ ├── count-2amrx │ │ └── index.html │ ├── count-2sa6k │ │ └── index.html │ ├── difference(from:) │ │ └── index.html │ ├── difference(from:by:) │ │ └── index.html │ ├── drop(while:) │ │ └── index.html │ ├── dropfirst(_:) │ │ └── index.html │ ├── droplast(_:) │ │ └── index.html │ ├── element │ │ └── index.html │ ├── elementsequal(_:) │ │ └── index.html │ ├── elementsequal(_:by:) │ │ └── index.html │ ├── endindex │ │ └── index.html │ ├── enumerated() │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── expressiblebyarrayliteral-implementations │ │ └── index.html │ ├── filter(_:) │ │ └── index.html │ ├── first(where:) │ │ └── index.html │ ├── first │ │ └── index.html │ ├── firstindex(of:) │ │ └── index.html │ ├── firstindex(where:) │ │ └── index.html │ ├── flatmap(_:)-4voe4 │ │ └── index.html │ ├── flatmap(_:)-6pe6o │ │ └── index.html │ ├── foreach(_:) │ │ └── index.html │ ├── formatted() │ │ └── index.html │ ├── formatted(_:) │ │ └── index.html │ ├── formindex(_:offsetby:) │ │ └── index.html │ ├── formindex(_:offsetby:limitedby:) │ │ └── index.html │ ├── formindex(after:) │ │ └── index.html │ ├── formindex(before:) │ │ └── index.html │ ├── index(_:offsetby:limitedby:) │ │ └── index.html │ ├── index(of:) │ │ └── index.html │ ├── index.html │ ├── index │ │ └── index.html │ ├── indices │ │ └── index.html │ ├── init() │ │ └── index.html │ ├── init(_:) │ │ └── index.html │ ├── init(arrayliteral:) │ │ └── index.html │ ├── insert(_:at:) │ │ └── index.html │ ├── insert(contentsof:at:) │ │ └── index.html │ ├── isempty-7kywf │ │ └── index.html │ ├── isempty-7ok7e │ │ └── index.html │ ├── joined() │ │ └── index.html │ ├── joined(separator:)-260lv │ │ └── index.html │ ├── joined(separator:)-7m2yt │ │ └── index.html │ ├── joined(separator:)-994o5 │ │ └── index.html │ ├── last(where:) │ │ └── index.html │ ├── last │ │ └── index.html │ ├── lastindex(of:) │ │ └── index.html │ ├── lastindex(where:) │ │ └── index.html │ ├── lazy │ │ └── index.html │ ├── lexicographicallyprecedes(_:) │ │ └── index.html │ ├── lexicographicallyprecedes(_:by:) │ │ └── index.html │ ├── makeiterator() │ │ └── index.html │ ├── map(_:)-dqe6 │ │ └── index.html │ ├── map(_:)-obr5 │ │ └── index.html │ ├── max() │ │ └── index.html │ ├── max(by:) │ │ └── index.html │ ├── min() │ │ └── index.html │ ├── min(by:) │ │ └── index.html │ ├── prefix(_:) │ │ └── index.html │ ├── prefix(through:) │ │ └── index.html │ ├── prefix(upto:) │ │ └── index.html │ ├── prefix(while:) │ │ └── index.html │ ├── publisher │ │ └── index.html │ ├── randomaccesscollection-implementations │ │ └── index.html │ ├── randomelement() │ │ └── index.html │ ├── randomelement(using:) │ │ └── index.html │ ├── reduce(_:_:) │ │ └── index.html │ ├── reduce(into:_:) │ │ └── index.html │ ├── remove(_:) │ │ └── index.html │ ├── remove(at:) │ │ └── index.html │ ├── removeall(keepingcapacity:) │ │ └── index.html │ ├── removefirst() │ │ └── index.html │ ├── removelast() │ │ └── index.html │ ├── replace(at:with:) │ │ └── index.html │ ├── replace(element:with:) │ │ └── index.html │ ├── replacesubrange(_:with:) │ │ └── index.html │ ├── reversed() │ │ └── index.html │ ├── sequence-implementations │ │ └── index.html │ ├── shuffled() │ │ └── index.html │ ├── shuffled(using:) │ │ └── index.html │ ├── sorted() │ │ └── index.html │ ├── sorted(by:) │ │ └── index.html │ ├── sorted(using:)-1b283 │ │ └── index.html │ ├── sorted(using:)-5a8e9 │ │ └── index.html │ ├── split(maxsplits:omittingemptysubsequences:whereseparator:) │ │ └── index.html │ ├── split(separator:maxsplits:omittingemptysubsequences:) │ │ └── index.html │ ├── startindex │ │ └── index.html │ ├── starts(with:) │ │ └── index.html │ ├── starts(with:by:) │ │ └── index.html │ ├── subscript(_:)-4dafp │ │ └── index.html │ ├── subscript(_:)-6j69y │ │ └── index.html │ ├── subscript(_:)-92zof │ │ └── index.html │ ├── subscript(_:)-9z091 │ │ └── index.html │ ├── suffix(_:) │ │ └── index.html │ ├── suffix(from:) │ │ └── index.html │ ├── underestimatedcount-6pkhr │ │ └── index.html │ ├── underestimatedcount-8n7uy │ │ └── index.html │ └── withcontiguousstorageifavailable(_:) │ │ └── index.html │ ├── pointidentifier │ └── index.html │ ├── polyline │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── bounds │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ ├── init(points:) │ │ └── index.html │ ├── init(touchpath:) │ │ └── index.html │ ├── iscomplete │ │ └── index.html │ ├── point │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── altitudeangle │ │ │ └── index.html │ │ ├── azimuth │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── event │ │ │ └── index.html │ │ ├── expectsupdate │ │ │ └── index.html │ │ ├── force │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(touchpoint:) │ │ │ └── index.html │ │ ├── location │ │ │ └── index.html │ │ ├── touchpoint │ │ │ └── index.html │ │ ├── x │ │ │ └── index.html │ │ └── y │ │ │ └── index.html │ ├── points │ │ └── index.html │ └── touchidentifier │ │ └── index.html │ ├── polylinestream │ ├── addconsumer(_:)-68r65 │ │ └── index.html │ ├── addconsumer(_:)-7s5n2 │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── delta │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── addedpolyline(index:) │ │ │ └── index.html │ │ ├── completedpolyline(index:) │ │ │ └── index.html │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── unhandled(event:) │ │ │ └── index.html │ │ └── updatedpolyline(index:updatedindexes:) │ │ │ └── index.html │ ├── index.html │ ├── indextoindex │ │ └── index.html │ ├── init() │ │ └── index.html │ ├── lines │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── produces │ │ ├── deltas │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(lines:deltas:) │ │ │ └── index.html │ │ └── lines │ │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── producer │ ├── addconsumer(_:)-1prec │ │ └── index.html │ ├── addconsumer(_:)-9q10n │ │ └── index.html │ ├── index.html │ ├── nextstep(_:)-2bpwj │ │ └── index.html │ ├── nextstep(_:)-4dl12 │ │ └── index.html │ ├── produces │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── producerconsumer │ ├── consume(_:) │ │ └── index.html │ ├── index.html │ └── produce(with:) │ │ └── index.html │ ├── savitzkygolay │ ├── addconsumer(_:)-5x2nj │ │ └── index.html │ ├── addconsumer(_:)-7i4o1 │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── enabled │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── lines │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── producerconsumer-implementations │ │ └── index.html │ ├── produces │ │ └── index.html │ ├── reset() │ │ └── index.html │ ├── strength │ │ └── index.html │ └── window │ │ └── index.html │ ├── smoother │ ├── element(for:at:) │ │ └── index.html │ ├── elementindexes(for:at:with:)-11wtp │ │ └── index.html │ ├── elementindexes(for:at:with:)-91dsl │ │ └── index.html │ ├── index.html │ └── maxindex(for:) │ │ └── index.html │ ├── touchevent │ ├── altitudeangle │ │ └── index.html │ ├── azimuth │ │ └── index.html │ ├── azimuthunitvector │ │ └── index.html │ ├── encode(to:) │ │ └── index.html │ ├── estimatedproperties │ │ └── index.html │ ├── estimatedpropertiesexpectingupdates │ │ └── index.html │ ├── estimationupdateindex │ │ └── index.html │ ├── expectsazimuthupdate │ │ └── index.html │ ├── expectsforceupdate │ │ └── index.html │ ├── expectslocationupdate │ │ └── index.html │ ├── expectsupdate │ │ └── index.html │ ├── force │ │ └── index.html │ ├── index.html │ ├── init(coalescedtouch:touch:in:isupdate:isprediction:) │ │ └── index.html │ ├── init(from:) │ │ └── index.html │ ├── init(identifier:) │ │ └── index.html │ ├── init(identifier:touchidentifier:timestamp:type:phase:force:maximumpossibleforce:altitudeangle:azimuthunitvector:azimuth:majorradius:majorradiustolerance:location:estimationupdateindex:estimatedproperties:estimatedpropertiesexpectingupdates:-8a9jf │ │ └── index.html │ ├── init(touchidentifier:type:phase:force:location:estimationupdateindex:estimatedproperties:estimatedpropertiesexpectingupdates:isupdate:isprediction:) │ │ └── index.html │ ├── isprediction │ │ └── index.html │ ├── issametouchas(event:) │ │ └── index.html │ ├── isupdate │ │ └── index.html │ ├── location │ │ └── index.html │ ├── majorradius │ │ └── index.html │ ├── majorradiustolerance │ │ └── index.html │ ├── maximumpossibleforce │ │ └── index.html │ ├── phase │ │ └── index.html │ ├── pointidentifier │ │ └── index.html │ ├── timestamp │ │ └── index.html │ ├── touchidentifier │ │ └── index.html │ ├── type │ │ └── index.html │ └── view │ │ └── index.html │ ├── toucheventgesturerecognizer │ ├── callback │ │ └── index.html │ ├── canbeprevented(by:) │ │ └── index.html │ ├── gesturerecognizer(_:shouldberequiredtofailby:) │ │ └── index.html │ ├── gesturerecognizer(_:shouldrecognizesimultaneouslywith:) │ │ └── index.html │ ├── gesturerecognizer(_:shouldrequirefailureof:) │ │ └── index.html │ ├── index.html │ ├── init(target:action:) │ │ └── index.html │ ├── shouldberequiredtofail(by:) │ │ └── index.html │ ├── touchesbegan(_:with:) │ │ └── index.html │ ├── touchescancelled(_:with:) │ │ └── index.html │ ├── touchesended(_:with:) │ │ └── index.html │ ├── touchesestimatedpropertiesupdated(_:) │ │ └── index.html │ ├── touchesmoved(_:with:) │ │ └── index.html │ └── uigesturerecognizerdelegate-implementations │ │ └── index.html │ ├── toucheventidentifier │ └── index.html │ ├── toucheventstream │ ├── addconsumer(_:)-15u8t │ │ └── index.html │ ├── addconsumer(_:)-4j6h9 │ │ └── index.html │ ├── events │ │ └── index.html │ ├── gesture │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── process(events:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── produces │ │ └── index.html │ └── reset() │ │ └── index.html │ ├── touchpath │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── bounds │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── hash(into:) │ │ └── index.html │ ├── hashable-implementations │ │ └── index.html │ ├── index.html │ ├── iscomplete │ │ └── index.html │ ├── point │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── event │ │ │ └── index.html │ │ ├── events │ │ │ └── index.html │ │ ├── expectsupdate │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(event:) │ │ │ └── index.html │ │ ├── init(from:) │ │ │ └── index.html │ │ └── isprediction │ │ │ └── index.html │ ├── points │ │ └── index.html │ └── touchidentifier │ │ └── index.html │ ├── touchpathstream │ ├── addconsumer(_:)-7drrb │ │ └── index.html │ ├── addconsumer(_:)-9ev3r │ │ └── index.html │ ├── consume(_:) │ │ └── index.html │ ├── consumes │ │ └── index.html │ ├── delta │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── addedtouchpath(index:) │ │ │ └── index.html │ │ ├── completedtouchpath(index:) │ │ │ └── index.html │ │ ├── debugdescription │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── index.html │ │ ├── unhandled(event:) │ │ │ └── index.html │ │ └── updatedtouchpath(index:updatedindexes:) │ │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── nextstep(_:) │ │ └── index.html │ ├── paths │ │ └── index.html │ ├── produce(with:) │ │ └── index.html │ ├── producer-implementations │ │ └── index.html │ ├── produces │ │ ├── deltas │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(paths:deltas:) │ │ │ └── index.html │ │ └── paths │ │ │ └── index.html │ └── reset() │ │ └── index.html │ └── uitouchidentifier │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg └── modified-icon.f496e73d.svg ├── index.html ├── index ├── availability.index ├── data.mdb └── navigator.index ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.00bf82af.js ├── documentation-topic.f5df163e.js ├── documentation-topic~topic~tutorials-overview.06df3b46.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.52388c22.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.4dfda72c.js ├── topic.d56fc284.js └── tutorials-overview.0dfedc70.js ├── metadata.json └── theme-settings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/DebugView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/DebugView.swift -------------------------------------------------------------------------------- /Example/Example/EventListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/EventListViewController.swift -------------------------------------------------------------------------------- /Example/Example/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/Extensions/UITouch+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Extensions/UITouch+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/InkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/InkViewController.swift -------------------------------------------------------------------------------- /Example/Example/Model/InkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Model/InkModel.swift -------------------------------------------------------------------------------- /Example/Example/Model/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Model/Notifications.swift -------------------------------------------------------------------------------- /Example/Example/Model/ViewSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/Model/ViewSettings.swift -------------------------------------------------------------------------------- /Example/Example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/Example/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/SettingsViewController.swift -------------------------------------------------------------------------------- /Example/Example/SplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/SplitViewController.swift -------------------------------------------------------------------------------- /Example/Example/View Layers/BezierView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/View Layers/BezierView.swift -------------------------------------------------------------------------------- /Example/Example/View Layers/PointsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/View Layers/PointsView.swift -------------------------------------------------------------------------------- /Example/Example/View Layers/PolylineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Example/View Layers/PolylineView.swift -------------------------------------------------------------------------------- /Example/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Example/Package.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Inkable/Documentation.docc/Inkable.md: -------------------------------------------------------------------------------- 1 | # ``Inkable`` 2 | 3 | Basic description. 4 | -------------------------------------------------------------------------------- /Sources/Inkable/Extensions/UIBezierPath+Elements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Extensions/UIBezierPath+Elements.swift -------------------------------------------------------------------------------- /Sources/Inkable/Extensions/UITouch+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Extensions/UITouch+Extensions.swift -------------------------------------------------------------------------------- /Sources/Inkable/External/ColorCodable/ColorCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/External/ColorCodable/ColorCodable.swift -------------------------------------------------------------------------------- /Sources/Inkable/External/ColorCodable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/External/ColorCodable/LICENSE -------------------------------------------------------------------------------- /Sources/Inkable/External/OrderedSet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/External/OrderedSet/LICENSE -------------------------------------------------------------------------------- /Sources/Inkable/External/OrderedSet/OrderedSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/External/OrderedSet/OrderedSet.swift -------------------------------------------------------------------------------- /Sources/Inkable/Gestures/TouchEventGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Gestures/TouchEventGestureRecognizer.swift -------------------------------------------------------------------------------- /Sources/Inkable/Helpers/MinMaxIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Helpers/MinMaxIndex.swift -------------------------------------------------------------------------------- /Sources/Inkable/Inkable.swift: -------------------------------------------------------------------------------- 1 | struct Inkable { 2 | var text = "Hello, World!" 3 | } 4 | -------------------------------------------------------------------------------- /Sources/Inkable/Model/BezierSmoothers/AntigrainSmoother.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/BezierSmoothers/AntigrainSmoother.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/BezierSmoothers/LineSmoother.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/BezierSmoothers/LineSmoother.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/BezierSmoothers/Smoother.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/BezierSmoothers/Smoother.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/BezierStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/BezierStream.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/Polyline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/Polyline.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineFilters/IterativeDouglasPeucker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineFilters/IterativeDouglasPeucker.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineFilters/NaiveDouglasPeucker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineFilters/NaiveDouglasPeucker.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineFilters/NaivePointDistance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineFilters/NaivePointDistance.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineFilters/NaiveSavitzkyGolay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineFilters/NaiveSavitzkyGolay.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineFilters/SavitzkyGolay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineFilters/SavitzkyGolay.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/PolylineStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/PolylineStream.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/ProducerConsumer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/ProducerConsumer.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/TouchEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/TouchEvent.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/TouchEventStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/TouchEventStream.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/TouchPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/TouchPath.swift -------------------------------------------------------------------------------- /Sources/Inkable/Model/TouchPathStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Sources/Inkable/Model/TouchPathStream.swift -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/TODO.md -------------------------------------------------------------------------------- /Tests/InkableTests/AntigrainSmootherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/AntigrainSmootherTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/BezierStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/BezierStreamTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/DouglasPeuckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/DouglasPeuckerTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/HelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/HelperTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/PolylineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/PolylineTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/ReplayEventTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/ReplayEventTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/SavitzkyGolayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/SavitzkyGolayTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/InkableTests/TestsOfTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/TestsOfTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/TouchPathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/TouchPathTests.swift -------------------------------------------------------------------------------- /Tests/InkableTests/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/events.json -------------------------------------------------------------------------------- /Tests/InkableTests/pencil-antigrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/pencil-antigrain.json -------------------------------------------------------------------------------- /Tests/InkableTests/pencil-antigrain2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/pencil-antigrain2.json -------------------------------------------------------------------------------- /Tests/InkableTests/pencil-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/pencil-error.json -------------------------------------------------------------------------------- /Tests/InkableTests/unknown-polyline-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/Tests/InkableTests/unknown-polyline-index.json -------------------------------------------------------------------------------- /chart/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/chart/example.png -------------------------------------------------------------------------------- /chart/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/chart/graph.png -------------------------------------------------------------------------------- /chart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/chart/index.html -------------------------------------------------------------------------------- /docs/css/documentation-topic.de084985.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/css/documentation-topic.de084985.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/css/documentation-topic~topic~tutorials-overview.67b822e0.css -------------------------------------------------------------------------------- /docs/css/index.47bc740e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/css/index.47bc740e.css -------------------------------------------------------------------------------- /docs/css/topic.2eb01958.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/css/topic.2eb01958.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.8754eb09.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/css/tutorials-overview.8754eb09.css -------------------------------------------------------------------------------- /docs/data/documentation/inkable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/antigrainsmoother.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/antigrainsmoother.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/delta.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/delta/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/delta/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/element.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/element/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/element/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/element/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/element/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/init(smoother:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/init(smoother:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/paths.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/produce(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/produce(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/produces/deltas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/produces/deltas.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/produces/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/produces/empty.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/produces/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/produces/paths.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/bezierstream/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/bezierstream/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/codablecolor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/codablecolor.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/codablecolor/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/codablecolor/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/codablecolor/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/codablecolor/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/consumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/consumer.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/consumer/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/consumer/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/consumer/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/consumer/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/consumer/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/consumer/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/drawevent/init(identifier:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/drawevent/init(identifier:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/estimationupdateindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/estimationupdateindex.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/gesturecallbackevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/gesturecallbackevent.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/gesturecallbackevent/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/gesturecallbackevent/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/linesmoother.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/linesmoother.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/linesmoother/element(for:at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/linesmoother/element(for:at:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/linesmoother/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/linesmoother/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/linesmoother/maxindex(for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/linesmoother/maxindex(for:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/allsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/allsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/asindexset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/asindexset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/compactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/compactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/compare(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/compare(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/contains(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/contains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/contains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/count.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/drop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/drop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/dropfirst(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/dropfirst(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/droplast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/droplast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/elementsequal(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/elementsequal(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/enumerated().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/enumerated().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/filter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/filter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/first(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/first(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/first.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/flatmap(_:)-3t1l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/flatmap(_:)-3t1l.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/flatmap(_:)-42pm4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/flatmap(_:)-42pm4.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/foreach(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/foreach(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/formatted(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/formatted(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init(_:)-15s7t.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init(_:)-15s7t.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init(_:)-3232o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init(_:)-3232o.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init(_:)-35mg8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init(_:)-35mg8.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init(_:)-9ffku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init(_:)-9ffku.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/init(_:)-9sqn1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/init(_:)-9sqn1.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/insert(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/insert(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/insert(integersin:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/insert(integersin:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/iterator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/iterator.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/iterator/element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/iterator/element.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/iterator/next().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/iterator/next().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/last.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/last.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/lazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/lazy.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/makeiterator().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/makeiterator().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/map(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/map(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/max().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/max(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/max(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/min().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/min(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/min(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/null.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/prefix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/prefix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/prefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/prefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/publisher.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/reduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/reduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/reduce(into:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/reduce(into:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/remove(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/remove(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/reversed().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/reversed().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/shuffled().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/shuffled().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/shuffled(using:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/shuffled(using:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/sorted().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/sorted().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/sorted(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/sorted(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/starts(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/starts(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/starts(with:by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/starts(with:by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/suffix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/suffix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/minmaxindex/underestimatedcount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/minmaxindex/underestimatedcount.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/enabled.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivedouglaspeucker/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivedouglaspeucker/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/enabled.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivepointdistance/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivepointdistance/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/enabled.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/lines.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/strength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/strength.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/naivesavitzkygolay/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/naivesavitzkygolay/window.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/allsatisfy(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/allsatisfy(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/append(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/append(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/append(contentsof:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/append(contentsof:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/compactmap(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/compactmap(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/compare(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/compare(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/contains(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/contains(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/contains(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/contains(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/contents.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/count-2amrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/count-2amrx.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/count-2sa6k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/count-2sa6k.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/difference(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/difference(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/difference(from:by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/difference(from:by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/drop(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/drop(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/dropfirst(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/dropfirst(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/droplast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/droplast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/element.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/elementsequal(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/elementsequal(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/elementsequal(_:by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/elementsequal(_:by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/endindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/endindex.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/enumerated().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/enumerated().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/filter(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/filter(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/first(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/first(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/first.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/firstindex(of:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/firstindex(of:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/firstindex(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/firstindex(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/flatmap(_:)-4voe4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/flatmap(_:)-4voe4.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/flatmap(_:)-6pe6o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/flatmap(_:)-6pe6o.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/foreach(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/foreach(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/formatted().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/formatted().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/formatted(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/formatted(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/formindex(after:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/formindex(after:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/formindex(before:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/formindex(before:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/index(of:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/index(of:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/index.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/indices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/indices.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/init(arrayliteral:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/init(arrayliteral:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/insert(_:at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/insert(_:at:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/isempty-7kywf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/isempty-7kywf.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/isempty-7ok7e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/isempty-7ok7e.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/joined().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/joined().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/last(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/last(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/last.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/last.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/lastindex(of:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/lastindex(of:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/lastindex(where:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/lastindex(where:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/lazy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/lazy.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/makeiterator().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/makeiterator().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/map(_:)-dqe6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/map(_:)-dqe6.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/map(_:)-obr5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/map(_:)-obr5.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/max().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/max().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/max(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/max(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/min().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/min().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/min(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/min(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/prefix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/prefix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/prefix(through:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/prefix(through:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/prefix(upto:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/prefix(upto:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/prefix(while:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/prefix(while:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/publisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/publisher.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/randomelement().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/randomelement().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/reduce(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/reduce(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/reduce(into:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/reduce(into:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/remove(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/remove(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/remove(at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/remove(at:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/removefirst().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/removefirst().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/removelast().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/removelast().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/replace(at:with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/replace(at:with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/reversed().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/reversed().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/shuffled().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/shuffled().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/shuffled(using:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/shuffled(using:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/sorted().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/sorted().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/sorted(by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/sorted(by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/sorted(using:)-1b283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/sorted(using:)-1b283.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/sorted(using:)-5a8e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/sorted(using:)-5a8e9.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/startindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/startindex.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/starts(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/starts(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/starts(with:by:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/starts(with:by:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/subscript(_:)-4dafp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/subscript(_:)-4dafp.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/subscript(_:)-6j69y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/subscript(_:)-6j69y.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/subscript(_:)-92zof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/subscript(_:)-92zof.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/subscript(_:)-9z091.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/subscript(_:)-9z091.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/suffix(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/suffix(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/orderedset/suffix(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/orderedset/suffix(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/pointidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/pointidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/bounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/bounds.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/init(points:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/init(points:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/init(touchpath:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/init(touchpath:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/iscomplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/iscomplete.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/altitudeangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/altitudeangle.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/azimuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/azimuth.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/event.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/expectsupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/expectsupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/force.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/force.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/location.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/touchpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/touchpoint.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/x.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/point/y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/point/y.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/points.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polyline/touchidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polyline/touchidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/delta.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/delta/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/delta/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/indextoindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/indextoindex.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/lines.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/produce(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/produce(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/produces/deltas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/produces/deltas.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/produces/lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/produces/lines.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/polylinestream/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/polylinestream/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/addconsumer(_:)-1prec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/addconsumer(_:)-1prec.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/addconsumer(_:)-9q10n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/addconsumer(_:)-9q10n.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/nextstep(_:)-2bpwj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/nextstep(_:)-2bpwj.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/nextstep(_:)-4dl12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/nextstep(_:)-4dl12.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producer/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producer/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producerconsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producerconsumer.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producerconsumer/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producerconsumer/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/producerconsumer/produce(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/producerconsumer/produce(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/enabled.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/lines.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/produce(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/produce(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/strength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/strength.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/savitzkygolay/window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/savitzkygolay/window.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/smoother.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/smoother.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/smoother/element(for:at:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/smoother/element(for:at:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/smoother/maxindex(for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/smoother/maxindex(for:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/altitudeangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/altitudeangle.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/azimuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/azimuth.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/azimuthunitvector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/azimuthunitvector.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/estimatedproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/estimatedproperties.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/expectsazimuthupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/expectsazimuthupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/expectsforceupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/expectsforceupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/expectsupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/expectsupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/force.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/force.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/init(identifier:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/init(identifier:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/isprediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/isprediction.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/isupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/isupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/location.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/majorradius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/majorradius.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/majorradiustolerance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/majorradiustolerance.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/maximumpossibleforce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/maximumpossibleforce.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/phase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/phase.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/pointidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/pointidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/timestamp.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/touchidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/touchidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/type.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchevent/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchevent/view.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventgesturerecognizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventgesturerecognizer.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/events.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/gesture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/gesture.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/toucheventstream/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/toucheventstream/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/bounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/bounds.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/iscomplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/iscomplete.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/event.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/events.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/expectsupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/expectsupdate.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/init(event:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/init(event:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/point/isprediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/point/isprediction.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/points.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpath/touchidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpath/touchidentifier.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/consume(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/consume(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/consumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/consumes.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/delta.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/delta/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/delta/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/init().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/nextstep(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/nextstep(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/paths.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/produce(with:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/produce(with:).json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/produces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/produces.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/produces/deltas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/produces/deltas.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/produces/paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/produces/paths.json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/touchpathstream/reset().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/touchpathstream/reset().json -------------------------------------------------------------------------------- /docs/data/documentation/inkable/uitouchidentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/data/documentation/inkable/uitouchidentifier.json -------------------------------------------------------------------------------- /docs/documentation/inkable/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/antigrainsmoother/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/antigrainsmoother/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/delta/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/delta/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/delta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/delta/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/element/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/element/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/element/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/element/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/element/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/init(smoother:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/init(smoother:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/nextstep(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/nextstep(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/paths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/paths/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/produce(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/produce(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/produces/deltas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/produces/deltas/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/produces/empty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/produces/empty/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/produces/paths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/produces/paths/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/bezierstream/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/bezierstream/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/codablecolor/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/codablecolor/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/codablecolor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/codablecolor/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/codablecolor/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/codablecolor/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/consumer/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/consumer/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/consumer/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/consumer/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/consumer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/consumer/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/consumer/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/consumer/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/drawevent/init(identifier:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/drawevent/init(identifier:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/estimationupdateindex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/estimationupdateindex/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/gesturecallbackevent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/gesturecallbackevent/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/gesturecallbackevent/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/gesturecallbackevent/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/linesmoother/element(for:at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/linesmoother/element(for:at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/linesmoother/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/linesmoother/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/linesmoother/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/linesmoother/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/linesmoother/maxindex(for:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/linesmoother/maxindex(for:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/allsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/allsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/asindexset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/asindexset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/compactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/compactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/compare(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/compare(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/contains(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/contains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/contains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/count/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/count/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/drop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/drop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/dropfirst(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/dropfirst(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/droplast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/droplast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/elementsequal(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/elementsequal(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/enumerated()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/enumerated()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/filter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/filter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/first(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/first(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/first/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/flatmap(_:)-3t1l/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/flatmap(_:)-3t1l/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/flatmap(_:)-42pm4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/flatmap(_:)-42pm4/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/foreach(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/foreach(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/formatted(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/formatted(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init(_:)-15s7t/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init(_:)-15s7t/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init(_:)-3232o/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init(_:)-3232o/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init(_:)-35mg8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init(_:)-35mg8/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init(_:)-9ffku/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init(_:)-9ffku/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/init(_:)-9sqn1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/init(_:)-9sqn1/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/insert(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/insert(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/iterator/element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/iterator/element/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/iterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/iterator/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/iterator/next()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/iterator/next()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/last/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/last/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/lazy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/lazy/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/makeiterator()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/makeiterator()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/map(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/map(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/max()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/max()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/max(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/max(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/min()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/min()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/min(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/min(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/null/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/null/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/prefix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/prefix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/prefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/prefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/publisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/publisher/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/reduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/reduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/reduce(into:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/reduce(into:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/remove(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/remove(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/reversed()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/reversed()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/shuffled()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/shuffled()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/shuffled(using:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/shuffled(using:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/sorted()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/sorted()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/sorted(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/sorted(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/starts(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/starts(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/starts(with:by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/starts(with:by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/minmaxindex/suffix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/minmaxindex/suffix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/enabled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/enabled/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivedouglaspeucker/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivedouglaspeucker/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/enabled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/enabled/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivepointdistance/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivepointdistance/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/enabled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/enabled/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/lines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/lines/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/strength/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/strength/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/naivesavitzkygolay/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/naivesavitzkygolay/window/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/allsatisfy(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/allsatisfy(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/append(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/append(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/append(contentsof:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/append(contentsof:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/compactmap(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/compactmap(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/compare(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/compare(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/contains(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/contains(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/contains(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/contains(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/contents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/contents/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/count-2amrx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/count-2amrx/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/count-2sa6k/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/count-2sa6k/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/difference(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/difference(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/drop(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/drop(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/dropfirst(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/dropfirst(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/droplast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/droplast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/element/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/endindex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/endindex/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/enumerated()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/enumerated()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/filter(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/filter(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/first(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/first(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/first/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/firstindex(of:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/firstindex(of:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/foreach(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/foreach(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/formatted()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/formatted()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/formatted(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/formatted(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/index(of:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/index(of:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/index/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/indices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/indices/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/insert(_:at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/insert(_:at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/isempty-7kywf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/isempty-7kywf/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/isempty-7ok7e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/isempty-7ok7e/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/joined()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/joined()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/last(where:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/last(where:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/last/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/last/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/lastindex(of:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/lastindex(of:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/lazy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/lazy/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/makeiterator()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/makeiterator()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/map(_:)-dqe6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/map(_:)-dqe6/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/map(_:)-obr5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/map(_:)-obr5/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/max()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/max()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/max(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/max(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/min()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/min()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/min(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/min(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/prefix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/prefix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/prefix(through:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/prefix(through:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/prefix(upto:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/prefix(upto:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/prefix(while:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/prefix(while:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/publisher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/publisher/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/randomelement()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/randomelement()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/reduce(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/reduce(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/reduce(into:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/reduce(into:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/remove(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/remove(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/remove(at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/remove(at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/removefirst()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/removefirst()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/removelast()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/removelast()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/reversed()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/reversed()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/shuffled()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/shuffled()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/shuffled(using:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/shuffled(using:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/sorted()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/sorted()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/sorted(by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/sorted(by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/startindex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/startindex/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/starts(with:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/starts(with:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/starts(with:by:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/starts(with:by:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/suffix(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/suffix(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/orderedset/suffix(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/orderedset/suffix(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/pointidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/pointidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/bounds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/bounds/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/init(points:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/init(points:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/init(touchpath:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/init(touchpath:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/iscomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/iscomplete/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/azimuth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/azimuth/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/event/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/force/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/force/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/location/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/location/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/touchpoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/touchpoint/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/x/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/x/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/point/y/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/point/y/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/points/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/points/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polyline/touchidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polyline/touchidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/delta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/delta/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/indextoindex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/indextoindex/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/lines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/lines/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/nextstep(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/nextstep(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/polylinestream/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/polylinestream/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producer/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producer/nextstep(_:)-2bpwj/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producer/nextstep(_:)-2bpwj/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producer/nextstep(_:)-4dl12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producer/nextstep(_:)-4dl12/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producer/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producer/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producer/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producer/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/producerconsumer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/producerconsumer/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/enabled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/enabled/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/lines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/lines/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/nextstep(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/nextstep(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/strength/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/strength/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/savitzkygolay/window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/savitzkygolay/window/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/smoother/element(for:at:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/smoother/element(for:at:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/smoother/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/smoother/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/smoother/maxindex(for:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/smoother/maxindex(for:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/altitudeangle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/altitudeangle/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/azimuth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/azimuth/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/expectsupdate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/expectsupdate/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/force/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/force/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/isprediction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/isprediction/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/isupdate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/isupdate/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/location/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/location/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/majorradius/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/majorradius/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/phase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/phase/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/pointidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/pointidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/timestamp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/timestamp/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/touchidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/touchidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/type/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/type/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchevent/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchevent/view/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventgesturerecognizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventgesturerecognizer/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/events/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/gesture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/gesture/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/toucheventstream/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/toucheventstream/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/bounds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/bounds/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/iscomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/iscomplete/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/event/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/events/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/point/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/point/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/points/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/points/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpath/touchidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpath/touchidentifier/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/consume(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/consume(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/consumes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/consumes/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/delta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/delta/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/paths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/paths/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/produces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/produces/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/touchpathstream/reset()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/touchpathstream/reset()/index.html -------------------------------------------------------------------------------- /docs/documentation/inkable/uitouchidentifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/documentation/inkable/uitouchidentifier/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.00bf82af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/chunk-vendors.00bf82af.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f5df163e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/documentation-topic.f5df163e.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/documentation-topic~topic~tutorials-overview.06df3b46.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.52388c22.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-custom-swift.52388c22.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.4dfda72c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/index.4dfda72c.js -------------------------------------------------------------------------------- /docs/js/topic.d56fc284.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/topic.d56fc284.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.0dfedc70.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/js/tutorials-overview.0dfedc70.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/Inkable/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------