diff --git a/.github/workflows/scaladoc.yaml b/.github/workflows/scaladoc.yaml index d4274bd2da06..c15f4b596fb5 100644 --- a/.github/workflows/scaladoc.yaml +++ b/.github/workflows/scaladoc.yaml @@ -52,11 +52,15 @@ jobs: - name: Generate testcases documentation run: ./project/scripts/sbt scaladoc/generateTestcasesDocumentation - - name: Generate reference documentation - run: ./project/scripts/sbt scaladoc/generateReferenceDocumentation + - name: Generate reference documentation and check links stability + run: | + ./project/scripts/sbt scaladoc/generateReferenceDocumentation + ./project/scripts/docsLinksStability ./scaladoc/output/reference ./project/scripts/expected-links/reference-expected-links.txt - - name: Generate Scala 3 documentation - run: ./project/scripts/sbt scaladoc/generateScalaDocumentation + - name: Generate Scala 3 documentation and check links stability + run: | + ./project/scripts/sbt scaladoc/generateScalaDocumentation + ./project/scripts/docsLinksStability ./scaladoc/output/scala3 ./project/scripts/expected-links/scala3-expected-links.txt - name: Generate documentation for example project using dotty-sbt run: ./project/scripts/sbt "sbt-test/scripted sbt-dotty/scaladoc" diff --git a/project/scripts/docsLinksStability b/project/scripts/docsLinksStability new file mode 100755 index 000000000000..911f1974febf --- /dev/null +++ b/project/scripts/docsLinksStability @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +set -u + +echo "Testing links stability in documentation" + +DOCS_DIR=$1 # The location of documentation is passed as a first parameter + +EXPECTED_LINKS_FILE=$2 # The location of expected-links.txt is passed as a second parameter + +pushd $DOCS_DIR > /dev/null # Go to docs dir but remember previous location +# We need to go to docs dir to make find return correct relative paths +find . -type f -name "*.html" | sort | (popd > /dev/null; diff $EXPECTED_LINKS_FILE -;) +# We list every html file in documentation, then sort it and finally compare to the expected links list. +# Before running diff we need to popd to return to the previous location because we don't have relative path to the expected links file. + +if [ ! $? -eq 0 ] +then + echo "Links changed. If it's intentional, regenerate expected links list by running ./project/scripts/regenerateExpectedLinks $1 $2" + exit -1 +else + echo "Links OK!" + exit 0 +fi diff --git a/project/scripts/expected-links/reference-expected-links.txt b/project/scripts/expected-links/reference-expected-links.txt new file mode 100644 index 000000000000..737267576c6e --- /dev/null +++ b/project/scripts/expected-links/reference-expected-links.txt @@ -0,0 +1,120 @@ +./changed-features/compiler-plugins.html +./changed-features/eta-expansion-spec.html +./changed-features/eta-expansion.html +./changed-features/implicit-conversions-spec.html +./changed-features/implicit-conversions.html +./changed-features/implicit-resolution.html +./changed-features/imports.html +./changed-features/index.html +./changed-features/lazy-vals-init.html +./changed-features/main-functions.html +./changed-features/match-syntax.html +./changed-features/numeric-literals.html +./changed-features/operators.html +./changed-features/overload-resolution.html +./changed-features/pattern-bindings.html +./changed-features/pattern-matching.html +./changed-features/structural-types-spec.html +./changed-features/structural-types.html +./changed-features/type-checking.html +./changed-features/type-inference.html +./changed-features/vararg-splices.html +./changed-features/wildcards.html +./contextual/by-name-context-parameters.html +./contextual/context-bounds.html +./contextual/context-functions-spec.html +./contextual/context-functions.html +./contextual/conversions.html +./contextual/derivation-macro.html +./contextual/derivation.html +./contextual/extension-methods.html +./contextual/given-imports.html +./contextual/givens.html +./contextual/index.html +./contextual/multiversal-equality.html +./contextual/relationship-implicits.html +./contextual/right-associative-extension-methods.html +./contextual/type-classes.html +./contextual/using-clauses.html +./docs/reference/other-new-features/named-typeargs.html +./docsScalaLangResources/scaladoc-assets.html +./dropped-features/auto-apply.html +./dropped-features/class-shadowing-spec.html +./dropped-features/class-shadowing.html +./dropped-features/delayed-init.html +./dropped-features/do-while.html +./dropped-features/early-initializers.html +./dropped-features/existential-types.html +./dropped-features/index.html +./dropped-features/limit22.html +./dropped-features/macros.html +./dropped-features/nonlocal-returns.html +./dropped-features/package-objects.html +./dropped-features/procedure-syntax.html +./dropped-features/symlits.html +./dropped-features/this-qualifier.html +./dropped-features/type-projection.html +./dropped-features/weak-conformance-spec.html +./dropped-features/weak-conformance.html +./dropped-features/wildcard-init.html +./dropped-features/xml.html +./enums/adts.html +./enums/desugarEnums.html +./enums/enums.html +./enums/index.html +./experimental/canthrow.html +./experimental/cc.html +./experimental/erased-defs-spec.html +./experimental/erased-defs.html +./experimental/explicit-nulls.html +./experimental/index.html +./experimental/named-typeargs-spec.html +./experimental/named-typeargs.html +./experimental/numeric-literals.html +./experimental/overview.html +./features-classification.html +./index.html +./language-versions/binary-compatibility.html +./language-versions/index.html +./language-versions/source-compatibility.html +./metaprogramming/compiletime-ops.html +./metaprogramming/index.html +./metaprogramming/inline.html +./metaprogramming/macros-spec.html +./metaprogramming/macros.html +./metaprogramming/reflection.html +./metaprogramming/staging.html +./metaprogramming/tasty-inspect.html +./new-types/dependent-function-types-spec.html +./new-types/dependent-function-types.html +./new-types/index.html +./new-types/intersection-types-spec.html +./new-types/intersection-types.html +./new-types/match-types.html +./new-types/polymorphic-function-types.html +./new-types/type-lambdas-spec.html +./new-types/type-lambdas.html +./new-types/union-types-spec.html +./new-types/union-types.html +./other-new-features/control-syntax.html +./other-new-features/creator-applications.html +./other-new-features/experimental-defs.html +./other-new-features/export.html +./other-new-features/indentation.html +./other-new-features/index.html +./other-new-features/kind-polymorphism.html +./other-new-features/matchable.html +./other-new-features/opaques-details.html +./other-new-features/opaques.html +./other-new-features/open-classes.html +./other-new-features/parameter-untupling-spec.html +./other-new-features/parameter-untupling.html +./other-new-features/safe-initialization.html +./other-new-features/targetName.html +./other-new-features/threadUnsafe-annotation.html +./other-new-features/trait-parameters.html +./other-new-features/transparent-traits.html +./other-new-features/type-test.html +./overview.html +./soft-modifier.html +./syntax.html diff --git a/project/scripts/expected-links/scala3-expected-links.txt b/project/scripts/expected-links/scala3-expected-links.txt new file mode 100644 index 000000000000..aba7a422f838 --- /dev/null +++ b/project/scripts/expected-links/scala3-expected-links.txt @@ -0,0 +1,2036 @@ +./api/dotty/tools/tasty.html +./api/dotty/tools/tasty/TastyBuffer$$Addr.html +./api/dotty/tools/tasty/TastyBuffer$$NameRef.html +./api/dotty/tools/tasty/TastyBuffer$.html +./api/dotty/tools/tasty/TastyBuffer.html +./api/dotty/tools/tasty/TastyFormat$$NameTags$.html +./api/dotty/tools/tasty/TastyFormat$$NameTags.html +./api/dotty/tools/tasty/TastyFormat$.html +./api/dotty/tools/tasty/TastyHash$.html +./api/dotty/tools/tasty/TastyHeader.html +./api/dotty/tools/tasty/TastyHeaderUnpickler$.html +./api/dotty/tools/tasty/TastyHeaderUnpickler.html +./api/dotty/tools/tasty/TastyReader.html +./api/dotty/tools/tasty/UnpickleException.html +./api/dotty/tools/tasty/util.html +./api/dotty/tools/tasty/util/Util$.html +./api/index.html +./api/scala.html +./api/scala/#::$.html +./api/scala/*:$.html +./api/scala/*:.html +./api/scala/<:<$.html +./api/scala/<:<.html +./api/scala/=:=.html +./api/scala/Any.html +./api/scala/AnyKind.html +./api/scala/AnyRef.html +./api/scala/AnyVal.html +./api/scala/App.html +./api/scala/Array$$UnapplySeqWrapper.html +./api/scala/Array$.html +./api/scala/Array.html +./api/scala/Boolean$.html +./api/scala/Boolean.html +./api/scala/Byte$.html +./api/scala/Byte.html +./api/scala/CanEqual$$derived$.html +./api/scala/CanEqual$.html +./api/scala/CanEqual.html +./api/scala/CanThrow.html +./api/scala/Char$.html +./api/scala/Char.html +./api/scala/Console$.html +./api/scala/Conversion.html +./api/scala/DelayedInit.html +./api/scala/Double$.html +./api/scala/Double.html +./api/scala/DummyImplicit$.html +./api/scala/DummyImplicit.html +./api/scala/Dynamic.html +./api/scala/EmptyTuple$.html +./api/scala/Enumeration$Val.html +./api/scala/Enumeration$Value.html +./api/scala/Enumeration$ValueOrdering$.html +./api/scala/Enumeration$ValueSet$.html +./api/scala/Enumeration$ValueSet.html +./api/scala/Enumeration.html +./api/scala/Equals.html +./api/scala/Float$.html +./api/scala/Float.html +./api/scala/Function$.html +./api/scala/Function0.html +./api/scala/Function1$$UnliftOps.html +./api/scala/Function1$.html +./api/scala/Function1.html +./api/scala/Function10.html +./api/scala/Function11.html +./api/scala/Function12.html +./api/scala/Function13.html +./api/scala/Function14.html +./api/scala/Function15.html +./api/scala/Function16.html +./api/scala/Function17.html +./api/scala/Function18.html +./api/scala/Function19.html +./api/scala/Function2.html +./api/scala/Function20.html +./api/scala/Function21.html +./api/scala/Function22.html +./api/scala/Function3.html +./api/scala/Function4.html +./api/scala/Function5.html +./api/scala/Function6.html +./api/scala/Function7.html +./api/scala/Function8.html +./api/scala/Function9.html +./api/scala/IArray$$WithFilter.html +./api/scala/IArray$.html +./api/scala/Int$.html +./api/scala/Int.html +./api/scala/Long$.html +./api/scala/Long.html +./api/scala/MatchError.html +./api/scala/Matchable.html +./api/scala/NonEmptyTuple.html +./api/scala/None$.html +./api/scala/NotImplementedError.html +./api/scala/Nothing.html +./api/scala/Null.html +./api/scala/Option$.html +./api/scala/Option$WithFilter.html +./api/scala/Option.html +./api/scala/PartialFunction$$ElementWiseExtractor.html +./api/scala/PartialFunction$.html +./api/scala/PartialFunction.html +./api/scala/PolyFunction.html +./api/scala/Predef$$ArrayCharSequence.html +./api/scala/Predef$$ArrowAssoc.html +./api/scala/Predef$$Ensuring.html +./api/scala/Predef$$SeqCharSequence.html +./api/scala/Predef$$StringFormat.html +./api/scala/Predef$$any2stringadd.html +./api/scala/Predef$.html +./api/scala/Product.html +./api/scala/Product1$.html +./api/scala/Product1.html +./api/scala/Product10$.html +./api/scala/Product10.html +./api/scala/Product11$.html +./api/scala/Product11.html +./api/scala/Product12$.html +./api/scala/Product12.html +./api/scala/Product13$.html +./api/scala/Product13.html +./api/scala/Product14$.html +./api/scala/Product14.html +./api/scala/Product15$.html +./api/scala/Product15.html +./api/scala/Product16$.html +./api/scala/Product16.html +./api/scala/Product17$.html +./api/scala/Product17.html +./api/scala/Product18$.html +./api/scala/Product18.html +./api/scala/Product19$.html +./api/scala/Product19.html +./api/scala/Product2$.html +./api/scala/Product2.html +./api/scala/Product20$.html +./api/scala/Product20.html +./api/scala/Product21$.html +./api/scala/Product21.html +./api/scala/Product22$.html +./api/scala/Product22.html +./api/scala/Product3$.html +./api/scala/Product3.html +./api/scala/Product4$.html +./api/scala/Product4.html +./api/scala/Product5$.html +./api/scala/Product5.html +./api/scala/Product6$.html +./api/scala/Product6.html +./api/scala/Product7$.html +./api/scala/Product7.html +./api/scala/Product8$.html +./api/scala/Product8.html +./api/scala/Product9$.html +./api/scala/Product9.html +./api/scala/Proxy$$Typed.html +./api/scala/Proxy$.html +./api/scala/Proxy.html +./api/scala/ScalaReflectionException.html +./api/scala/Selectable$$WithoutPreciseParameterTypes.html +./api/scala/Selectable$.html +./api/scala/Selectable.html +./api/scala/SerialVersionUID.html +./api/scala/Short$.html +./api/scala/Short.html +./api/scala/Singleton.html +./api/scala/Some.html +./api/scala/Specializable$$Group.html +./api/scala/Specializable$$SpecializedGroup.html +./api/scala/Specializable$.html +./api/scala/Specializable.html +./api/scala/StringContext$$InvalidEscapeException.html +./api/scala/StringContext$.html +./api/scala/StringContext$s$.html +./api/scala/StringContext.html +./api/scala/Symbol$.html +./api/scala/Symbol.html +./api/scala/Tuple$.html +./api/scala/Tuple.html +./api/scala/Tuple1.html +./api/scala/Tuple10.html +./api/scala/Tuple11.html +./api/scala/Tuple12.html +./api/scala/Tuple13.html +./api/scala/Tuple14.html +./api/scala/Tuple15.html +./api/scala/Tuple16.html +./api/scala/Tuple17.html +./api/scala/Tuple18.html +./api/scala/Tuple19.html +./api/scala/Tuple2.html +./api/scala/Tuple20.html +./api/scala/Tuple21.html +./api/scala/Tuple22.html +./api/scala/Tuple3.html +./api/scala/Tuple4.html +./api/scala/Tuple5.html +./api/scala/Tuple6.html +./api/scala/Tuple7.html +./api/scala/Tuple8.html +./api/scala/Tuple9.html +./api/scala/UninitializedError.html +./api/scala/UninitializedFieldError.html +./api/scala/Unit$.html +./api/scala/Unit.html +./api/scala/ValueOf.html +./api/scala/annotation.html +./api/scala/annotation/Annotation.html +./api/scala/annotation/ClassfileAnnotation.html +./api/scala/annotation/ConstantAnnotation.html +./api/scala/annotation/RefiningAnnotation.html +./api/scala/annotation/StaticAnnotation.html +./api/scala/annotation/TypeConstraint.html +./api/scala/annotation/alpha.html +./api/scala/annotation/compileTimeOnly.html +./api/scala/annotation/constructorOnly.html +./api/scala/annotation/elidable$.html +./api/scala/annotation/elidable.html +./api/scala/annotation/experimental.html +./api/scala/annotation/implicitAmbiguous.html +./api/scala/annotation/implicitNotFound.html +./api/scala/annotation/meta.html +./api/scala/annotation/meta/beanGetter.html +./api/scala/annotation/meta/beanSetter.html +./api/scala/annotation/meta/companionClass.html +./api/scala/annotation/meta/companionMethod.html +./api/scala/annotation/meta/companionObject.html +./api/scala/annotation/meta/field.html +./api/scala/annotation/meta/getter.html +./api/scala/annotation/meta/languageFeature.html +./api/scala/annotation/meta/param.html +./api/scala/annotation/meta/setter.html +./api/scala/annotation/nowarn.html +./api/scala/annotation/showAsInfix.html +./api/scala/annotation/static.html +./api/scala/annotation/strictfp.html +./api/scala/annotation/switch.html +./api/scala/annotation/tailrec.html +./api/scala/annotation/targetName.html +./api/scala/annotation/threadUnsafe.html +./api/scala/annotation/transparentTrait.html +./api/scala/annotation/unchecked.html +./api/scala/annotation/unchecked/uncheckedStable.html +./api/scala/annotation/unchecked/uncheckedVariance.html +./api/scala/annotation/unspecialized.html +./api/scala/annotation/unused.html +./api/scala/annotation/varargs.html +./api/scala/beans.html +./api/scala/beans/BeanProperty.html +./api/scala/beans/BooleanBeanProperty.html +./api/scala/collection.html +./api/scala/collection/+:$.html +./api/scala/collection/:+$.html +./api/scala/collection/AbstractIndexedSeqView.html +./api/scala/collection/AbstractIterable.html +./api/scala/collection/AbstractIterator.html +./api/scala/collection/AbstractMap.html +./api/scala/collection/AbstractMapView.html +./api/scala/collection/AbstractSeq.html +./api/scala/collection/AbstractSeqView.html +./api/scala/collection/AbstractSet.html +./api/scala/collection/AbstractView.html +./api/scala/collection/AnyStepper$$AnyStepperSpliterator.html +./api/scala/collection/AnyStepper$.html +./api/scala/collection/AnyStepper.html +./api/scala/collection/ArrayOps$$WithFilter.html +./api/scala/collection/ArrayOps$.html +./api/scala/collection/ArrayOps.html +./api/scala/collection/BitSet$.html +./api/scala/collection/BitSet.html +./api/scala/collection/BitSetOps$.html +./api/scala/collection/BitSetOps.html +./api/scala/collection/BufferedIterator.html +./api/scala/collection/BuildFrom$.html +./api/scala/collection/BuildFrom.html +./api/scala/collection/BuildFromLowPriority1.html +./api/scala/collection/BuildFromLowPriority2.html +./api/scala/collection/ClassTagIterableFactory$$AnyIterableDelegate.html +./api/scala/collection/ClassTagIterableFactory$$Delegate.html +./api/scala/collection/ClassTagIterableFactory$.html +./api/scala/collection/ClassTagIterableFactory.html +./api/scala/collection/ClassTagSeqFactory$$AnySeqDelegate.html +./api/scala/collection/ClassTagSeqFactory$$Delegate.html +./api/scala/collection/ClassTagSeqFactory$.html +./api/scala/collection/ClassTagSeqFactory.html +./api/scala/collection/DefaultMap.html +./api/scala/collection/DoubleStepper$$DoubleStepperSpliterator.html +./api/scala/collection/DoubleStepper$.html +./api/scala/collection/DoubleStepper.html +./api/scala/collection/EvidenceIterableFactory$$Delegate.html +./api/scala/collection/EvidenceIterableFactory$.html +./api/scala/collection/EvidenceIterableFactory.html +./api/scala/collection/EvidenceIterableFactoryDefaults.html +./api/scala/collection/Factory$.html +./api/scala/collection/Factory.html +./api/scala/collection/IndexedSeq$.html +./api/scala/collection/IndexedSeq.html +./api/scala/collection/IndexedSeqOps.html +./api/scala/collection/IndexedSeqView$$Appended.html +./api/scala/collection/IndexedSeqView$$Concat.html +./api/scala/collection/IndexedSeqView$$Drop.html +./api/scala/collection/IndexedSeqView$$DropRight.html +./api/scala/collection/IndexedSeqView$$Id.html +./api/scala/collection/IndexedSeqView$$Map.html +./api/scala/collection/IndexedSeqView$$Prepended.html +./api/scala/collection/IndexedSeqView$$Reverse.html +./api/scala/collection/IndexedSeqView$$Slice.html +./api/scala/collection/IndexedSeqView$$Take.html +./api/scala/collection/IndexedSeqView$$TakeRight.html +./api/scala/collection/IndexedSeqView$.html +./api/scala/collection/IndexedSeqView.html +./api/scala/collection/IntStepper$$IntStepperSpliterator.html +./api/scala/collection/IntStepper$.html +./api/scala/collection/IntStepper.html +./api/scala/collection/Iterable$.html +./api/scala/collection/Iterable.html +./api/scala/collection/IterableFactory$$Delegate.html +./api/scala/collection/IterableFactory$.html +./api/scala/collection/IterableFactory.html +./api/scala/collection/IterableFactoryDefaults.html +./api/scala/collection/IterableOnce$.html +./api/scala/collection/IterableOnce.html +./api/scala/collection/IterableOnceExtensionMethods.html +./api/scala/collection/IterableOnceOps.html +./api/scala/collection/IterableOps$$SizeCompareOps.html +./api/scala/collection/IterableOps$$WithFilter.html +./api/scala/collection/IterableOps$.html +./api/scala/collection/IterableOps.html +./api/scala/collection/Iterator$.html +./api/scala/collection/Iterator$GroupedIterator.html +./api/scala/collection/Iterator.html +./api/scala/collection/JavaConverters$$AsJava.html +./api/scala/collection/JavaConverters$$AsJavaCollection.html +./api/scala/collection/JavaConverters$$AsJavaDictionary.html +./api/scala/collection/JavaConverters$$AsJavaEnumeration.html +./api/scala/collection/JavaConverters$$AsScala.html +./api/scala/collection/JavaConverters$.html +./api/scala/collection/LazyZip2$.html +./api/scala/collection/LazyZip2.html +./api/scala/collection/LazyZip3$.html +./api/scala/collection/LazyZip3.html +./api/scala/collection/LazyZip4$.html +./api/scala/collection/LazyZip4.html +./api/scala/collection/LinearSeq$.html +./api/scala/collection/LinearSeq.html +./api/scala/collection/LinearSeqOps.html +./api/scala/collection/LongStepper$$LongStepperSpliterator.html +./api/scala/collection/LongStepper$.html +./api/scala/collection/LongStepper.html +./api/scala/collection/Map$.html +./api/scala/collection/Map.html +./api/scala/collection/MapFactory$$Delegate.html +./api/scala/collection/MapFactory$.html +./api/scala/collection/MapFactory.html +./api/scala/collection/MapFactoryDefaults.html +./api/scala/collection/MapOps$$WithFilter.html +./api/scala/collection/MapOps$.html +./api/scala/collection/MapOps.html +./api/scala/collection/MapView$$Filter.html +./api/scala/collection/MapView$$FilterKeys.html +./api/scala/collection/MapView$$Id.html +./api/scala/collection/MapView$$MapValues.html +./api/scala/collection/MapView$$TapEach.html +./api/scala/collection/MapView$.html +./api/scala/collection/MapView.html +./api/scala/collection/MapViewFactory.html +./api/scala/collection/Searching$$Found.html +./api/scala/collection/Searching$$InsertionPoint.html +./api/scala/collection/Searching$$SearchImpl.html +./api/scala/collection/Searching$$SearchResult.html +./api/scala/collection/Searching$.html +./api/scala/collection/Seq$.html +./api/scala/collection/Seq.html +./api/scala/collection/SeqFactory$$Delegate.html +./api/scala/collection/SeqFactory$$UnapplySeqWrapper.html +./api/scala/collection/SeqFactory$.html +./api/scala/collection/SeqFactory.html +./api/scala/collection/SeqMap$.html +./api/scala/collection/SeqMap.html +./api/scala/collection/SeqOps$.html +./api/scala/collection/SeqOps.html +./api/scala/collection/SeqView$$Appended.html +./api/scala/collection/SeqView$$Concat.html +./api/scala/collection/SeqView$$Drop.html +./api/scala/collection/SeqView$$DropRight.html +./api/scala/collection/SeqView$$Id.html +./api/scala/collection/SeqView$$Map.html +./api/scala/collection/SeqView$$Prepended.html +./api/scala/collection/SeqView$$Reverse.html +./api/scala/collection/SeqView$$Sorted.html +./api/scala/collection/SeqView$$Take.html +./api/scala/collection/SeqView$$TakeRight.html +./api/scala/collection/SeqView$.html +./api/scala/collection/SeqView.html +./api/scala/collection/Set$.html +./api/scala/collection/Set.html +./api/scala/collection/SetOps.html +./api/scala/collection/SortedIterableFactory$$Delegate.html +./api/scala/collection/SortedIterableFactory$.html +./api/scala/collection/SortedIterableFactory.html +./api/scala/collection/SortedMap$.html +./api/scala/collection/SortedMap.html +./api/scala/collection/SortedMapFactory$$Delegate.html +./api/scala/collection/SortedMapFactory$.html +./api/scala/collection/SortedMapFactory.html +./api/scala/collection/SortedMapFactoryDefaults.html +./api/scala/collection/SortedMapOps$$WithFilter.html +./api/scala/collection/SortedMapOps$.html +./api/scala/collection/SortedMapOps.html +./api/scala/collection/SortedOps.html +./api/scala/collection/SortedSet$.html +./api/scala/collection/SortedSet.html +./api/scala/collection/SortedSetFactoryDefaults.html +./api/scala/collection/SortedSetOps$$WithFilter.html +./api/scala/collection/SortedSetOps$.html +./api/scala/collection/SortedSetOps.html +./api/scala/collection/SpecificIterableFactory.html +./api/scala/collection/Stepper$$EfficientSplit.html +./api/scala/collection/Stepper$.html +./api/scala/collection/Stepper.html +./api/scala/collection/StepperShape$$Shape.html +./api/scala/collection/StepperShape$.html +./api/scala/collection/StepperShape.html +./api/scala/collection/StepperShapeLowPriority1.html +./api/scala/collection/StepperShapeLowPriority2.html +./api/scala/collection/StrictOptimizedClassTagSeqFactory.html +./api/scala/collection/StrictOptimizedIterableOps.html +./api/scala/collection/StrictOptimizedLinearSeqOps.html +./api/scala/collection/StrictOptimizedMapOps.html +./api/scala/collection/StrictOptimizedSeqFactory.html +./api/scala/collection/StrictOptimizedSeqOps.html +./api/scala/collection/StrictOptimizedSetOps.html +./api/scala/collection/StrictOptimizedSortedMapOps.html +./api/scala/collection/StrictOptimizedSortedSetOps.html +./api/scala/collection/StringOps$$WithFilter.html +./api/scala/collection/StringOps$.html +./api/scala/collection/StringOps.html +./api/scala/collection/StringView.html +./api/scala/collection/View$$Appended.html +./api/scala/collection/View$$Collect.html +./api/scala/collection/View$$Concat.html +./api/scala/collection/View$$DistinctBy.html +./api/scala/collection/View$$Drop.html +./api/scala/collection/View$$DropRight.html +./api/scala/collection/View$$DropWhile.html +./api/scala/collection/View$$Elems.html +./api/scala/collection/View$$Empty$.html +./api/scala/collection/View$$Fill.html +./api/scala/collection/View$$Filter$.html +./api/scala/collection/View$$Filter.html +./api/scala/collection/View$$FlatMap.html +./api/scala/collection/View$$Iterate.html +./api/scala/collection/View$$LeftPartitionMapped.html +./api/scala/collection/View$$Map.html +./api/scala/collection/View$$PadTo.html +./api/scala/collection/View$$Prepended.html +./api/scala/collection/View$$RightPartitionMapped.html +./api/scala/collection/View$$ScanLeft.html +./api/scala/collection/View$$Single.html +./api/scala/collection/View$$Tabulate.html +./api/scala/collection/View$$Take.html +./api/scala/collection/View$$TakeRight.html +./api/scala/collection/View$$TakeWhile.html +./api/scala/collection/View$$Unfold.html +./api/scala/collection/View$$Updated.html +./api/scala/collection/View$$Zip.html +./api/scala/collection/View$$ZipAll.html +./api/scala/collection/View$$ZipWithIndex.html +./api/scala/collection/View$.html +./api/scala/collection/View.html +./api/scala/collection/WithFilter.html +./api/scala/collection/concurrent.html +./api/scala/collection/concurrent/Map.html +./api/scala/collection/concurrent/TrieMap$$MangledHashing.html +./api/scala/collection/concurrent/TrieMap$.html +./api/scala/collection/concurrent/TrieMap.html +./api/scala/collection/convert.html +./api/scala/collection/convert/AsJavaConverters.html +./api/scala/collection/convert/AsJavaExtensions$BufferHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$ConcurrentMapHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$IterableHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$IteratorHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$MapHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$MutableMapHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$MutableSeqHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$MutableSetHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$SeqHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions$SetHasAsJava.html +./api/scala/collection/convert/AsJavaExtensions.html +./api/scala/collection/convert/AsScalaConverters.html +./api/scala/collection/convert/AsScalaExtensions$CollectionHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$ConcurrentMapHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$DictionaryHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$EnumerationHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$IterableHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$IteratorHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$ListHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$MapHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$PropertiesHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions$SetHasAsScala.html +./api/scala/collection/convert/AsScalaExtensions.html +./api/scala/collection/convert/ImplicitConversions$.html +./api/scala/collection/convert/ImplicitConversionsToJava$.html +./api/scala/collection/convert/ImplicitConversionsToScala$.html +./api/scala/collection/convert/StreamExtensions$$AccumulatorFactoryInfo$.html +./api/scala/collection/convert/StreamExtensions$$AccumulatorFactoryInfo.html +./api/scala/collection/convert/StreamExtensions$$LowPriorityAccumulatorFactoryInfo.html +./api/scala/collection/convert/StreamExtensions$$StreamShape$.html +./api/scala/collection/convert/StreamExtensions$$StreamShape.html +./api/scala/collection/convert/StreamExtensions$$StreamShapeLowPriority1.html +./api/scala/collection/convert/StreamExtensions$$StreamUnboxer$.html +./api/scala/collection/convert/StreamExtensions$$StreamUnboxer.html +./api/scala/collection/convert/StreamExtensions$.html +./api/scala/collection/convert/StreamExtensions$AnyArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$ByteArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$CharArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$DoubleArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$DoubleStreamHasToScala.html +./api/scala/collection/convert/StreamExtensions$FloatArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$IntArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$IntStreamHasToScala.html +./api/scala/collection/convert/StreamExtensions$IterableHasSeqStream.html +./api/scala/collection/convert/StreamExtensions$IterableNonGenericHasParStream.html +./api/scala/collection/convert/StreamExtensions$LongArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$LongStreamHasToScala.html +./api/scala/collection/convert/StreamExtensions$MapHasParKeyValueStream.html +./api/scala/collection/convert/StreamExtensions$MapHasSeqKeyValueStream.html +./api/scala/collection/convert/StreamExtensions$ShortArrayHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions$StepperHasParStream.html +./api/scala/collection/convert/StreamExtensions$StepperHasSeqStream.html +./api/scala/collection/convert/StreamExtensions$StreamHasToScala.html +./api/scala/collection/convert/StreamExtensions$StringHasSeqParStream.html +./api/scala/collection/convert/StreamExtensions.html +./api/scala/collection/convert/ToJavaImplicits.html +./api/scala/collection/convert/ToScalaImplicits.html +./api/scala/collection/generic.html +./api/scala/collection/generic/DefaultSerializable.html +./api/scala/collection/generic/DefaultSerializationProxy.html +./api/scala/collection/generic/IsIterable$.html +./api/scala/collection/generic/IsIterable.html +./api/scala/collection/generic/IsIterableLowPriority.html +./api/scala/collection/generic/IsIterableOnce$.html +./api/scala/collection/generic/IsIterableOnce.html +./api/scala/collection/generic/IsIterableOnceLowPriority.html +./api/scala/collection/generic/IsMap$.html +./api/scala/collection/generic/IsMap.html +./api/scala/collection/generic/IsSeq$.html +./api/scala/collection/generic/IsSeq.html +./api/scala/collection/generic/Subtractable.html +./api/scala/collection/immutable.html +./api/scala/collection/immutable/::.html +./api/scala/collection/immutable/AbstractMap.html +./api/scala/collection/immutable/AbstractSeq.html +./api/scala/collection/immutable/AbstractSet.html +./api/scala/collection/immutable/ArraySeq$$ofBoolean.html +./api/scala/collection/immutable/ArraySeq$$ofByte.html +./api/scala/collection/immutable/ArraySeq$$ofChar.html +./api/scala/collection/immutable/ArraySeq$$ofDouble.html +./api/scala/collection/immutable/ArraySeq$$ofFloat.html +./api/scala/collection/immutable/ArraySeq$$ofInt.html +./api/scala/collection/immutable/ArraySeq$$ofLong.html +./api/scala/collection/immutable/ArraySeq$$ofRef.html +./api/scala/collection/immutable/ArraySeq$$ofShort.html +./api/scala/collection/immutable/ArraySeq$$ofUnit.html +./api/scala/collection/immutable/ArraySeq$.html +./api/scala/collection/immutable/ArraySeq.html +./api/scala/collection/immutable/BitSet$$BitSet1.html +./api/scala/collection/immutable/BitSet$$BitSet2.html +./api/scala/collection/immutable/BitSet$$BitSetN.html +./api/scala/collection/immutable/BitSet$.html +./api/scala/collection/immutable/BitSet.html +./api/scala/collection/immutable/HashMap$.html +./api/scala/collection/immutable/HashMap.html +./api/scala/collection/immutable/HashSet$.html +./api/scala/collection/immutable/HashSet.html +./api/scala/collection/immutable/IndexedSeq$.html +./api/scala/collection/immutable/IndexedSeq.html +./api/scala/collection/immutable/IndexedSeqDefaults$.html +./api/scala/collection/immutable/IndexedSeqOps.html +./api/scala/collection/immutable/IntMap$.html +./api/scala/collection/immutable/IntMap.html +./api/scala/collection/immutable/Iterable$.html +./api/scala/collection/immutable/Iterable.html +./api/scala/collection/immutable/LazyList$$#::$.html +./api/scala/collection/immutable/LazyList$$Deferrer.html +./api/scala/collection/immutable/LazyList$$SerializationProxy.html +./api/scala/collection/immutable/LazyList$$cons$.html +./api/scala/collection/immutable/LazyList$.html +./api/scala/collection/immutable/LazyList.html +./api/scala/collection/immutable/LinearSeq$.html +./api/scala/collection/immutable/LinearSeq.html +./api/scala/collection/immutable/LinearSeqOps.html +./api/scala/collection/immutable/List$.html +./api/scala/collection/immutable/List.html +./api/scala/collection/immutable/ListMap$.html +./api/scala/collection/immutable/ListMap.html +./api/scala/collection/immutable/ListSet$.html +./api/scala/collection/immutable/ListSet.html +./api/scala/collection/immutable/LongMap$.html +./api/scala/collection/immutable/LongMap.html +./api/scala/collection/immutable/Map$$Map1.html +./api/scala/collection/immutable/Map$$Map2.html +./api/scala/collection/immutable/Map$$Map3.html +./api/scala/collection/immutable/Map$$Map4.html +./api/scala/collection/immutable/Map$$WithDefault.html +./api/scala/collection/immutable/Map$.html +./api/scala/collection/immutable/Map.html +./api/scala/collection/immutable/MapOps$ImmutableKeySet.html +./api/scala/collection/immutable/MapOps.html +./api/scala/collection/immutable/Nil$.html +./api/scala/collection/immutable/NumericRange$$Exclusive.html +./api/scala/collection/immutable/NumericRange$$Inclusive.html +./api/scala/collection/immutable/NumericRange$.html +./api/scala/collection/immutable/NumericRange.html +./api/scala/collection/immutable/Queue$.html +./api/scala/collection/immutable/Queue.html +./api/scala/collection/immutable/Range$$BigDecimal$.html +./api/scala/collection/immutable/Range$$BigInt$.html +./api/scala/collection/immutable/Range$$Exclusive.html +./api/scala/collection/immutable/Range$$Inclusive.html +./api/scala/collection/immutable/Range$$Int$.html +./api/scala/collection/immutable/Range$$Long$.html +./api/scala/collection/immutable/Range$$Partial.html +./api/scala/collection/immutable/Range$.html +./api/scala/collection/immutable/Range.html +./api/scala/collection/immutable/Seq$.html +./api/scala/collection/immutable/Seq.html +./api/scala/collection/immutable/SeqMap$.html +./api/scala/collection/immutable/SeqMap.html +./api/scala/collection/immutable/SeqOps.html +./api/scala/collection/immutable/Set$$Set1.html +./api/scala/collection/immutable/Set$$Set2.html +./api/scala/collection/immutable/Set$$Set3.html +./api/scala/collection/immutable/Set$$Set4.html +./api/scala/collection/immutable/Set$.html +./api/scala/collection/immutable/Set.html +./api/scala/collection/immutable/SetOps.html +./api/scala/collection/immutable/SortedMap$$WithDefault.html +./api/scala/collection/immutable/SortedMap$.html +./api/scala/collection/immutable/SortedMap.html +./api/scala/collection/immutable/SortedMapOps$ImmutableKeySortedSet.html +./api/scala/collection/immutable/SortedMapOps.html +./api/scala/collection/immutable/SortedSet$.html +./api/scala/collection/immutable/SortedSet.html +./api/scala/collection/immutable/SortedSetOps.html +./api/scala/collection/immutable/Stream$$#::$.html +./api/scala/collection/immutable/Stream$$Cons.html +./api/scala/collection/immutable/Stream$$Deferrer.html +./api/scala/collection/immutable/Stream$$Empty$.html +./api/scala/collection/immutable/Stream$$SerializationProxy.html +./api/scala/collection/immutable/Stream$$cons$.html +./api/scala/collection/immutable/Stream$.html +./api/scala/collection/immutable/Stream.html +./api/scala/collection/immutable/StrictOptimizedMapOps.html +./api/scala/collection/immutable/StrictOptimizedSeqOps.html +./api/scala/collection/immutable/StrictOptimizedSetOps.html +./api/scala/collection/immutable/StrictOptimizedSortedMapOps.html +./api/scala/collection/immutable/StrictOptimizedSortedSetOps.html +./api/scala/collection/immutable/TreeMap$.html +./api/scala/collection/immutable/TreeMap.html +./api/scala/collection/immutable/TreeSeqMap$$Builder.html +./api/scala/collection/immutable/TreeSeqMap$$OrderBy$$Insertion$.html +./api/scala/collection/immutable/TreeSeqMap$$OrderBy$$Modification$.html +./api/scala/collection/immutable/TreeSeqMap$$OrderBy$.html +./api/scala/collection/immutable/TreeSeqMap$$OrderBy.html +./api/scala/collection/immutable/TreeSeqMap$$Ordering.html +./api/scala/collection/immutable/TreeSeqMap$.html +./api/scala/collection/immutable/TreeSeqMap.html +./api/scala/collection/immutable/TreeSet$.html +./api/scala/collection/immutable/TreeSet.html +./api/scala/collection/immutable/Vector$.html +./api/scala/collection/immutable/Vector.html +./api/scala/collection/immutable/VectorBuilder.html +./api/scala/collection/immutable/VectorMap$.html +./api/scala/collection/immutable/VectorMap.html +./api/scala/collection/immutable/WrappedString$$UnwrapOp.html +./api/scala/collection/immutable/WrappedString$.html +./api/scala/collection/immutable/WrappedString.html +./api/scala/collection/mutable.html +./api/scala/collection/mutable/AbstractBuffer.html +./api/scala/collection/mutable/AbstractIterable.html +./api/scala/collection/mutable/AbstractMap.html +./api/scala/collection/mutable/AbstractSeq.html +./api/scala/collection/mutable/AbstractSet.html +./api/scala/collection/mutable/AnyRefMap$$AnyRefMapBuilder.html +./api/scala/collection/mutable/AnyRefMap$.html +./api/scala/collection/mutable/AnyRefMap.html +./api/scala/collection/mutable/ArrayBuffer$.html +./api/scala/collection/mutable/ArrayBuffer.html +./api/scala/collection/mutable/ArrayBufferView.html +./api/scala/collection/mutable/ArrayBuilder$$ofBoolean.html +./api/scala/collection/mutable/ArrayBuilder$$ofByte.html +./api/scala/collection/mutable/ArrayBuilder$$ofChar.html +./api/scala/collection/mutable/ArrayBuilder$$ofDouble.html +./api/scala/collection/mutable/ArrayBuilder$$ofFloat.html +./api/scala/collection/mutable/ArrayBuilder$$ofInt.html +./api/scala/collection/mutable/ArrayBuilder$$ofLong.html +./api/scala/collection/mutable/ArrayBuilder$$ofRef.html +./api/scala/collection/mutable/ArrayBuilder$$ofShort.html +./api/scala/collection/mutable/ArrayBuilder$$ofUnit.html +./api/scala/collection/mutable/ArrayBuilder$.html +./api/scala/collection/mutable/ArrayBuilder.html +./api/scala/collection/mutable/ArrayDeque$.html +./api/scala/collection/mutable/ArrayDeque.html +./api/scala/collection/mutable/ArrayDequeOps.html +./api/scala/collection/mutable/ArraySeq$$ofBoolean.html +./api/scala/collection/mutable/ArraySeq$$ofByte.html +./api/scala/collection/mutable/ArraySeq$$ofChar.html +./api/scala/collection/mutable/ArraySeq$$ofDouble.html +./api/scala/collection/mutable/ArraySeq$$ofFloat.html +./api/scala/collection/mutable/ArraySeq$$ofInt.html +./api/scala/collection/mutable/ArraySeq$$ofLong.html +./api/scala/collection/mutable/ArraySeq$$ofRef.html +./api/scala/collection/mutable/ArraySeq$$ofShort.html +./api/scala/collection/mutable/ArraySeq$$ofUnit.html +./api/scala/collection/mutable/ArraySeq$.html +./api/scala/collection/mutable/ArraySeq.html +./api/scala/collection/mutable/BitSet$.html +./api/scala/collection/mutable/BitSet.html +./api/scala/collection/mutable/Buffer$.html +./api/scala/collection/mutable/Buffer.html +./api/scala/collection/mutable/Builder.html +./api/scala/collection/mutable/Clearable.html +./api/scala/collection/mutable/Cloneable.html +./api/scala/collection/mutable/CollisionProofHashMap$$Node.html +./api/scala/collection/mutable/CollisionProofHashMap$$RBNode.html +./api/scala/collection/mutable/CollisionProofHashMap$.html +./api/scala/collection/mutable/CollisionProofHashMap.html +./api/scala/collection/mutable/Growable$.html +./api/scala/collection/mutable/Growable.html +./api/scala/collection/mutable/GrowableBuilder.html +./api/scala/collection/mutable/HashMap$.html +./api/scala/collection/mutable/HashMap.html +./api/scala/collection/mutable/HashSet$.html +./api/scala/collection/mutable/HashSet.html +./api/scala/collection/mutable/ImmutableBuilder.html +./api/scala/collection/mutable/IndexedBuffer$.html +./api/scala/collection/mutable/IndexedBuffer.html +./api/scala/collection/mutable/IndexedSeq$.html +./api/scala/collection/mutable/IndexedSeq.html +./api/scala/collection/mutable/IndexedSeqOps.html +./api/scala/collection/mutable/Iterable$.html +./api/scala/collection/mutable/Iterable.html +./api/scala/collection/mutable/LinkedHashMap$.html +./api/scala/collection/mutable/LinkedHashMap.html +./api/scala/collection/mutable/LinkedHashSet$.html +./api/scala/collection/mutable/LinkedHashSet.html +./api/scala/collection/mutable/ListBuffer$.html +./api/scala/collection/mutable/ListBuffer.html +./api/scala/collection/mutable/ListMap$.html +./api/scala/collection/mutable/ListMap.html +./api/scala/collection/mutable/LongMap$$LongMapBuilder.html +./api/scala/collection/mutable/LongMap$.html +./api/scala/collection/mutable/LongMap.html +./api/scala/collection/mutable/Map$$WithDefault.html +./api/scala/collection/mutable/Map$.html +./api/scala/collection/mutable/Map.html +./api/scala/collection/mutable/MapOps.html +./api/scala/collection/mutable/MultiMap.html +./api/scala/collection/mutable/OpenHashMap$.html +./api/scala/collection/mutable/OpenHashMap.html +./api/scala/collection/mutable/PriorityQueue$.html +./api/scala/collection/mutable/PriorityQueue.html +./api/scala/collection/mutable/Queue$.html +./api/scala/collection/mutable/Queue.html +./api/scala/collection/mutable/ReusableBuilder.html +./api/scala/collection/mutable/Seq$.html +./api/scala/collection/mutable/Seq.html +./api/scala/collection/mutable/SeqMap$.html +./api/scala/collection/mutable/SeqMap.html +./api/scala/collection/mutable/SeqOps.html +./api/scala/collection/mutable/Set$.html +./api/scala/collection/mutable/Set.html +./api/scala/collection/mutable/SetOps.html +./api/scala/collection/mutable/Shrinkable.html +./api/scala/collection/mutable/SortedMap$$WithDefault.html +./api/scala/collection/mutable/SortedMap$.html +./api/scala/collection/mutable/SortedMap.html +./api/scala/collection/mutable/SortedMapOps.html +./api/scala/collection/mutable/SortedSet$.html +./api/scala/collection/mutable/SortedSet.html +./api/scala/collection/mutable/SortedSetOps.html +./api/scala/collection/mutable/Stack$.html +./api/scala/collection/mutable/Stack.html +./api/scala/collection/mutable/StringBuilder$.html +./api/scala/collection/mutable/StringBuilder.html +./api/scala/collection/mutable/TreeMap$.html +./api/scala/collection/mutable/TreeMap.html +./api/scala/collection/mutable/TreeSet$.html +./api/scala/collection/mutable/TreeSet.html +./api/scala/collection/mutable/UnrolledBuffer$$Unrolled.html +./api/scala/collection/mutable/UnrolledBuffer$.html +./api/scala/collection/mutable/UnrolledBuffer.html +./api/scala/collection/mutable/WeakHashMap$.html +./api/scala/collection/mutable/WeakHashMap.html +./api/scala/compat.html +./api/scala/compat/Platform$.html +./api/scala/compiletime.html +./api/scala/compiletime/ops.html +./api/scala/compiletime/ops/any$.html +./api/scala/compiletime/ops/boolean$.html +./api/scala/compiletime/ops/double$.html +./api/scala/compiletime/ops/float$.html +./api/scala/compiletime/ops/int$.html +./api/scala/compiletime/ops/long$.html +./api/scala/compiletime/ops/string$.html +./api/scala/compiletime/testing.html +./api/scala/compiletime/testing/Error.html +./api/scala/compiletime/testing/ErrorKind$$Parser$.html +./api/scala/compiletime/testing/ErrorKind$$Typer$.html +./api/scala/compiletime/testing/ErrorKind$.html +./api/scala/compiletime/testing/ErrorKind.html +./api/scala/concurrent.html +./api/scala/concurrent/Await$.html +./api/scala/concurrent/Awaitable.html +./api/scala/concurrent/Batchable.html +./api/scala/concurrent/BlockContext$.html +./api/scala/concurrent/BlockContext.html +./api/scala/concurrent/CanAwait.html +./api/scala/concurrent/Channel.html +./api/scala/concurrent/DelayedLazyVal.html +./api/scala/concurrent/ExecutionContext$$Implicits$.html +./api/scala/concurrent/ExecutionContext$$parasitic$.html +./api/scala/concurrent/ExecutionContext$.html +./api/scala/concurrent/ExecutionContext.html +./api/scala/concurrent/ExecutionContextExecutor.html +./api/scala/concurrent/ExecutionContextExecutorService.html +./api/scala/concurrent/Future$$never$.html +./api/scala/concurrent/Future$.html +./api/scala/concurrent/Future.html +./api/scala/concurrent/JavaConversions$.html +./api/scala/concurrent/OnCompleteRunnable.html +./api/scala/concurrent/Promise$.html +./api/scala/concurrent/Promise.html +./api/scala/concurrent/SyncChannel.html +./api/scala/concurrent/SyncVar.html +./api/scala/concurrent/duration.html +./api/scala/concurrent/duration/Deadline$$DeadlineIsOrdered$.html +./api/scala/concurrent/duration/Deadline$.html +./api/scala/concurrent/duration/Deadline.html +./api/scala/concurrent/duration/DoubleMult.html +./api/scala/concurrent/duration/Duration$$DurationIsOrdered$.html +./api/scala/concurrent/duration/Duration$$Infinite.html +./api/scala/concurrent/duration/Duration$.html +./api/scala/concurrent/duration/Duration.html +./api/scala/concurrent/duration/DurationConversions$$Classifier.html +./api/scala/concurrent/duration/DurationConversions$$fromNowConvert$.html +./api/scala/concurrent/duration/DurationConversions$$spanConvert$.html +./api/scala/concurrent/duration/DurationConversions$.html +./api/scala/concurrent/duration/DurationConversions.html +./api/scala/concurrent/duration/DurationDouble.html +./api/scala/concurrent/duration/DurationInt.html +./api/scala/concurrent/duration/DurationLong.html +./api/scala/concurrent/duration/FiniteDuration$$FiniteDurationIsOrdered$.html +./api/scala/concurrent/duration/FiniteDuration$.html +./api/scala/concurrent/duration/FiniteDuration.html +./api/scala/concurrent/duration/IntMult.html +./api/scala/concurrent/duration/LongMult.html +./api/scala/concurrent/duration/fromNow$.html +./api/scala/concurrent/duration/span$.html +./api/scala/deprecated.html +./api/scala/deprecatedInheritance.html +./api/scala/deprecatedName.html +./api/scala/deprecatedOverriding.html +./api/scala/deriving.html +./api/scala/deriving/Mirror$$Product.html +./api/scala/deriving/Mirror$$Singleton.html +./api/scala/deriving/Mirror$$SingletonProxy.html +./api/scala/deriving/Mirror$$Sum.html +./api/scala/deriving/Mirror$.html +./api/scala/deriving/Mirror.html +./api/scala/inline.html +./api/scala/io.html +./api/scala/io/AnsiColor$.html +./api/scala/io/AnsiColor.html +./api/scala/io/BufferedSource$BufferedLineIterator.html +./api/scala/io/BufferedSource.html +./api/scala/io/Codec$.html +./api/scala/io/Codec.html +./api/scala/io/LowPriorityCodecImplicits.html +./api/scala/io/Source$.html +./api/scala/io/Source$LineIterator.html +./api/scala/io/Source$NoPositioner$.html +./api/scala/io/Source$Positioner.html +./api/scala/io/Source$RelaxedPosition$.html +./api/scala/io/Source$RelaxedPositioner$.html +./api/scala/io/Source.html +./api/scala/io/StdIn$.html +./api/scala/jdk.html +./api/scala/jdk/Accumulator$$AccumulatorFactoryShape$.html +./api/scala/jdk/Accumulator$$AccumulatorFactoryShape.html +./api/scala/jdk/Accumulator$$LowPriorityAccumulatorFactoryShape.html +./api/scala/jdk/Accumulator$.html +./api/scala/jdk/Accumulator.html +./api/scala/jdk/AnyAccumulator$$SerializationProxy.html +./api/scala/jdk/AnyAccumulator$.html +./api/scala/jdk/AnyAccumulator.html +./api/scala/jdk/CollectionConverters$.html +./api/scala/jdk/DoubleAccumulator$$SerializationProxy.html +./api/scala/jdk/DoubleAccumulator$.html +./api/scala/jdk/DoubleAccumulator.html +./api/scala/jdk/DurationConverters$$JavaDurationOps.html +./api/scala/jdk/DurationConverters$$ScalaDurationOps.html +./api/scala/jdk/DurationConverters$.html +./api/scala/jdk/FunctionConverters$.html +./api/scala/jdk/FunctionWrappers$$AsJavaBiConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaBiFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaBiPredicate.html +./api/scala/jdk/FunctionWrappers$$AsJavaBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaBooleanSupplier.html +./api/scala/jdk/FunctionWrappers$$AsJavaConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoublePredicate.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleSupplier.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleToIntFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleToLongFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaDoubleUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntPredicate.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntSupplier.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntToLongFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaIntUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongPredicate.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongSupplier.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongToIntFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaLongUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$AsJavaObjDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaObjIntConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaObjLongConsumer.html +./api/scala/jdk/FunctionWrappers$$AsJavaPredicate.html +./api/scala/jdk/FunctionWrappers$$AsJavaSupplier.html +./api/scala/jdk/FunctionWrappers$$AsJavaToDoubleBiFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaToIntBiFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaToIntFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaToLongBiFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaToLongFunction.html +./api/scala/jdk/FunctionWrappers$$AsJavaUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaBiConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaBiFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaBiPredicate.html +./api/scala/jdk/FunctionWrappers$$FromJavaBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaBooleanSupplier.html +./api/scala/jdk/FunctionWrappers$$FromJavaConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoublePredicate.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleSupplier.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleToIntFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleToLongFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaDoubleUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntPredicate.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntSupplier.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntToLongFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaIntUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongPredicate.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongSupplier.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongToIntFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaLongUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$FromJavaObjDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaObjIntConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaObjLongConsumer.html +./api/scala/jdk/FunctionWrappers$$FromJavaPredicate.html +./api/scala/jdk/FunctionWrappers$$FromJavaSupplier.html +./api/scala/jdk/FunctionWrappers$$FromJavaToDoubleBiFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaToIntBiFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaToIntFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaToLongBiFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaToLongFunction.html +./api/scala/jdk/FunctionWrappers$$FromJavaUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichBiConsumerAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichBiFunctionAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichBiPredicateAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichBinaryOperatorAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichBooleanSupplierAsFunction0.html +./api/scala/jdk/FunctionWrappers$$RichConsumerAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoubleBinaryOperatorAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichDoubleConsumerAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoubleFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoublePredicateAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoubleSupplierAsFunction0.html +./api/scala/jdk/FunctionWrappers$$RichDoubleToIntFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoubleToLongFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichDoubleUnaryOperatorAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichFunction0AsBooleanSupplier.html +./api/scala/jdk/FunctionWrappers$$RichFunction0AsDoubleSupplier.html +./api/scala/jdk/FunctionWrappers$$RichFunction0AsIntSupplier.html +./api/scala/jdk/FunctionWrappers$$RichFunction0AsLongSupplier.html +./api/scala/jdk/FunctionWrappers$$RichFunction0AsSupplier.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoublePredicate.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoubleToIntFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoubleToLongFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsDoubleUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntPredicate.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntToLongFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsIntUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongPredicate.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongToIntFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsLongUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsPredicate.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsToDoubleFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsToIntFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsToLongFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction1AsUnaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsBiConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsBiFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsBiPredicate.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsDoubleBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsIntBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsLongBinaryOperator.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsObjDoubleConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsObjIntConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsObjLongConsumer.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsToDoubleBiFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsToIntBiFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunction2AsToLongBiFunction.html +./api/scala/jdk/FunctionWrappers$$RichFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntBinaryOperatorAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichIntConsumerAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntPredicateAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntSupplierAsFunction0.html +./api/scala/jdk/FunctionWrappers$$RichIntToDoubleFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntToLongFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichIntUnaryOperatorAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongBinaryOperatorAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichLongConsumerAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongPredicateAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongSupplierAsFunction0.html +./api/scala/jdk/FunctionWrappers$$RichLongToDoubleFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongToIntFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichLongUnaryOperatorAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichObjDoubleConsumerAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichObjIntConsumerAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichObjLongConsumerAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichPredicateAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichSupplierAsFunction0.html +./api/scala/jdk/FunctionWrappers$$RichToDoubleBiFunctionAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichToDoubleFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichToIntBiFunctionAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichToIntFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichToLongBiFunctionAsFunction2.html +./api/scala/jdk/FunctionWrappers$$RichToLongFunctionAsFunction1.html +./api/scala/jdk/FunctionWrappers$$RichUnaryOperatorAsFunction1.html +./api/scala/jdk/FunctionWrappers$.html +./api/scala/jdk/FutureConverters$$CompletionStageOps.html +./api/scala/jdk/FutureConverters$$FutureOps.html +./api/scala/jdk/FutureConverters$.html +./api/scala/jdk/IntAccumulator$$SerializationProxy.html +./api/scala/jdk/IntAccumulator$.html +./api/scala/jdk/IntAccumulator.html +./api/scala/jdk/LongAccumulator$$SerializationProxy.html +./api/scala/jdk/LongAccumulator$.html +./api/scala/jdk/LongAccumulator.html +./api/scala/jdk/OptionConverters$$RichOption.html +./api/scala/jdk/OptionConverters$$RichOptional.html +./api/scala/jdk/OptionConverters$$RichOptionalDouble.html +./api/scala/jdk/OptionConverters$$RichOptionalInt.html +./api/scala/jdk/OptionConverters$$RichOptionalLong.html +./api/scala/jdk/OptionConverters$.html +./api/scala/jdk/OptionShape$.html +./api/scala/jdk/OptionShape.html +./api/scala/jdk/Priority0FunctionExtensions.html +./api/scala/jdk/Priority1FunctionExtensions.html +./api/scala/jdk/Priority2FunctionExtensions.html +./api/scala/jdk/Priority3FunctionExtensions.html +./api/scala/jdk/StreamConverters$.html +./api/scala/jdk/javaapi.html +./api/scala/jdk/javaapi/CollectionConverters$.html +./api/scala/jdk/javaapi/DurationConverters$.html +./api/scala/jdk/javaapi/FunctionConverters$.html +./api/scala/jdk/javaapi/FutureConverters$.html +./api/scala/jdk/javaapi/OptionConverters$.html +./api/scala/jdk/javaapi/StreamConverters$.html +./api/scala/language$$experimental$.html +./api/scala/language$.html +./api/scala/languageFeature$$dynamics$.html +./api/scala/languageFeature$$dynamics.html +./api/scala/languageFeature$$existentials$.html +./api/scala/languageFeature$$existentials.html +./api/scala/languageFeature$$experimental$$macros$.html +./api/scala/languageFeature$$experimental$$macros.html +./api/scala/languageFeature$$experimental$.html +./api/scala/languageFeature$$higherKinds$.html +./api/scala/languageFeature$$higherKinds.html +./api/scala/languageFeature$$implicitConversions$.html +./api/scala/languageFeature$$implicitConversions.html +./api/scala/languageFeature$$postfixOps$.html +./api/scala/languageFeature$$postfixOps.html +./api/scala/languageFeature$$reflectiveCalls$.html +./api/scala/languageFeature$$reflectiveCalls.html +./api/scala/languageFeature$.html +./api/scala/main.html +./api/scala/math.html +./api/scala/math/BigDecimal$$RoundingMode$.html +./api/scala/math/BigDecimal$.html +./api/scala/math/BigDecimal.html +./api/scala/math/BigInt$.html +./api/scala/math/BigInt.html +./api/scala/math/Equiv$$BigDecimal$.html +./api/scala/math/Equiv$$BigInt$.html +./api/scala/math/Equiv$$Boolean$.html +./api/scala/math/Equiv$$Byte$.html +./api/scala/math/Equiv$$Char$.html +./api/scala/math/Equiv$$DeprecatedDoubleEquiv$.html +./api/scala/math/Equiv$$DeprecatedFloatEquiv$.html +./api/scala/math/Equiv$$Double$$IeeeEquiv$.html +./api/scala/math/Equiv$$Double$$IeeeEquiv.html +./api/scala/math/Equiv$$Double$$StrictEquiv$.html +./api/scala/math/Equiv$$Double$$StrictEquiv.html +./api/scala/math/Equiv$$Double$.html +./api/scala/math/Equiv$$ExtraImplicits.html +./api/scala/math/Equiv$$Float$$IeeeEquiv$.html +./api/scala/math/Equiv$$Float$$IeeeEquiv.html +./api/scala/math/Equiv$$Float$$StrictEquiv$.html +./api/scala/math/Equiv$$Float$$StrictEquiv.html +./api/scala/math/Equiv$$Float$.html +./api/scala/math/Equiv$$Implicits$.html +./api/scala/math/Equiv$$Int$.html +./api/scala/math/Equiv$$Long$.html +./api/scala/math/Equiv$$Short$.html +./api/scala/math/Equiv$$String$.html +./api/scala/math/Equiv$$Symbol$.html +./api/scala/math/Equiv$$Unit$.html +./api/scala/math/Equiv$.html +./api/scala/math/Equiv.html +./api/scala/math/Fractional$$ExtraImplicits.html +./api/scala/math/Fractional$$Implicits$.html +./api/scala/math/Fractional$.html +./api/scala/math/Fractional$FractionalOps.html +./api/scala/math/Fractional.html +./api/scala/math/Integral$$ExtraImplicits.html +./api/scala/math/Integral$$Implicits$.html +./api/scala/math/Integral$.html +./api/scala/math/Integral$IntegralOps.html +./api/scala/math/Integral.html +./api/scala/math/LowPriorityEquiv.html +./api/scala/math/LowPriorityOrderingImplicits.html +./api/scala/math/Numeric$$BigDecimalAsIfIntegral$.html +./api/scala/math/Numeric$$BigDecimalAsIfIntegral.html +./api/scala/math/Numeric$$BigDecimalIsConflicted.html +./api/scala/math/Numeric$$BigDecimalIsFractional$.html +./api/scala/math/Numeric$$BigDecimalIsFractional.html +./api/scala/math/Numeric$$BigIntIsIntegral$.html +./api/scala/math/Numeric$$BigIntIsIntegral.html +./api/scala/math/Numeric$$ByteIsIntegral$.html +./api/scala/math/Numeric$$ByteIsIntegral.html +./api/scala/math/Numeric$$CharIsIntegral$.html +./api/scala/math/Numeric$$CharIsIntegral.html +./api/scala/math/Numeric$$DoubleIsFractional$.html +./api/scala/math/Numeric$$DoubleIsFractional.html +./api/scala/math/Numeric$$ExtraImplicits.html +./api/scala/math/Numeric$$FloatIsFractional$.html +./api/scala/math/Numeric$$FloatIsFractional.html +./api/scala/math/Numeric$$Implicits$.html +./api/scala/math/Numeric$$IntIsIntegral$.html +./api/scala/math/Numeric$$IntIsIntegral.html +./api/scala/math/Numeric$$LongIsIntegral$.html +./api/scala/math/Numeric$$LongIsIntegral.html +./api/scala/math/Numeric$$ShortIsIntegral$.html +./api/scala/math/Numeric$$ShortIsIntegral.html +./api/scala/math/Numeric$.html +./api/scala/math/Numeric$NumericOps.html +./api/scala/math/Numeric.html +./api/scala/math/Ordered$.html +./api/scala/math/Ordered.html +./api/scala/math/Ordering$$BigDecimal$.html +./api/scala/math/Ordering$$BigDecimalOrdering.html +./api/scala/math/Ordering$$BigInt$.html +./api/scala/math/Ordering$$BigIntOrdering.html +./api/scala/math/Ordering$$Boolean$.html +./api/scala/math/Ordering$$BooleanOrdering.html +./api/scala/math/Ordering$$Byte$.html +./api/scala/math/Ordering$$ByteOrdering.html +./api/scala/math/Ordering$$CachedReverse.html +./api/scala/math/Ordering$$Char$.html +./api/scala/math/Ordering$$CharOrdering.html +./api/scala/math/Ordering$$DeprecatedDoubleOrdering$.html +./api/scala/math/Ordering$$DeprecatedFloatOrdering$.html +./api/scala/math/Ordering$$Double$$IeeeOrdering$.html +./api/scala/math/Ordering$$Double$$IeeeOrdering.html +./api/scala/math/Ordering$$Double$$TotalOrdering$.html +./api/scala/math/Ordering$$Double$$TotalOrdering.html +./api/scala/math/Ordering$$Double$.html +./api/scala/math/Ordering$$ExtraImplicits.html +./api/scala/math/Ordering$$Float$$IeeeOrdering$.html +./api/scala/math/Ordering$$Float$$IeeeOrdering.html +./api/scala/math/Ordering$$Float$$TotalOrdering$.html +./api/scala/math/Ordering$$Float$$TotalOrdering.html +./api/scala/math/Ordering$$Float$.html +./api/scala/math/Ordering$$Implicits$.html +./api/scala/math/Ordering$$Int$.html +./api/scala/math/Ordering$$IntOrdering.html +./api/scala/math/Ordering$$Long$.html +./api/scala/math/Ordering$$LongOrdering.html +./api/scala/math/Ordering$$OptionOrdering.html +./api/scala/math/Ordering$$Short$.html +./api/scala/math/Ordering$$ShortOrdering.html +./api/scala/math/Ordering$$String$.html +./api/scala/math/Ordering$$StringOrdering.html +./api/scala/math/Ordering$$Symbol$.html +./api/scala/math/Ordering$$SymbolOrdering.html +./api/scala/math/Ordering$$Unit$.html +./api/scala/math/Ordering$$UnitOrdering.html +./api/scala/math/Ordering$.html +./api/scala/math/Ordering$OrderingOps.html +./api/scala/math/Ordering.html +./api/scala/math/PartialOrdering$.html +./api/scala/math/PartialOrdering.html +./api/scala/math/PartiallyOrdered.html +./api/scala/math/ScalaNumericAnyConversions.html +./api/scala/math/ScalaNumericConversions.html +./api/scala/native.html +./api/scala/noinline.html +./api/scala/quoted.html +./api/scala/quoted/Expr$.html +./api/scala/quoted/Expr.html +./api/scala/quoted/ExprMap.html +./api/scala/quoted/Exprs$.html +./api/scala/quoted/FromExpr$$EmptyTupleFromExpr$.html +./api/scala/quoted/FromExpr$$NilFromExpr$.html +./api/scala/quoted/FromExpr$$NoneFromExpr$.html +./api/scala/quoted/FromExpr$$StringContextFromExpr$.html +./api/scala/quoted/FromExpr$.html +./api/scala/quoted/FromExpr.html +./api/scala/quoted/Quotes$reflectModule$AlternativesMethods.html +./api/scala/quoted/Quotes$reflectModule$AlternativesModule.html +./api/scala/quoted/Quotes$reflectModule$AndOrTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$AndTypeModule.html +./api/scala/quoted/Quotes$reflectModule$AnnotatedMethods.html +./api/scala/quoted/Quotes$reflectModule$AnnotatedModule.html +./api/scala/quoted/Quotes$reflectModule$AnnotatedTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$AnnotatedTypeModule.html +./api/scala/quoted/Quotes$reflectModule$AppliedMethods.html +./api/scala/quoted/Quotes$reflectModule$AppliedModule.html +./api/scala/quoted/Quotes$reflectModule$AppliedTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$AppliedTypeModule.html +./api/scala/quoted/Quotes$reflectModule$ApplyMethods.html +./api/scala/quoted/Quotes$reflectModule$ApplyModule.html +./api/scala/quoted/Quotes$reflectModule$AssignMethods.html +./api/scala/quoted/Quotes$reflectModule$AssignModule.html +./api/scala/quoted/Quotes$reflectModule$BindMethods.html +./api/scala/quoted/Quotes$reflectModule$BindModule.html +./api/scala/quoted/Quotes$reflectModule$BlockMethods.html +./api/scala/quoted/Quotes$reflectModule$BlockModule.html +./api/scala/quoted/Quotes$reflectModule$BooleanConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ByNameMethods.html +./api/scala/quoted/Quotes$reflectModule$ByNameModule.html +./api/scala/quoted/Quotes$reflectModule$ByNameTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$ByNameTypeModule.html +./api/scala/quoted/Quotes$reflectModule$ByteConstantModule.html +./api/scala/quoted/Quotes$reflectModule$CaseDefMethods.html +./api/scala/quoted/Quotes$reflectModule$CaseDefModule.html +./api/scala/quoted/Quotes$reflectModule$CharConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ClassDefMethods.html +./api/scala/quoted/Quotes$reflectModule$ClassDefModule.html +./api/scala/quoted/Quotes$reflectModule$ClassOfConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ClosureMethods.html +./api/scala/quoted/Quotes$reflectModule$ClosureModule.html +./api/scala/quoted/Quotes$reflectModule$CompilationInfoModule.html +./api/scala/quoted/Quotes$reflectModule$ConstantMethods.html +./api/scala/quoted/Quotes$reflectModule$ConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ConstantTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$ConstantTypeModule.html +./api/scala/quoted/Quotes$reflectModule$DefDefMethods.html +./api/scala/quoted/Quotes$reflectModule$DefDefModule.html +./api/scala/quoted/Quotes$reflectModule$DefinitionMethods.html +./api/scala/quoted/Quotes$reflectModule$DefinitionModule.html +./api/scala/quoted/Quotes$reflectModule$DoubleConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ExportMethods.html +./api/scala/quoted/Quotes$reflectModule$ExportModule.html +./api/scala/quoted/Quotes$reflectModule$FlagsMethods.html +./api/scala/quoted/Quotes$reflectModule$FlagsModule.html +./api/scala/quoted/Quotes$reflectModule$FloatConstantModule.html +./api/scala/quoted/Quotes$reflectModule$GivenSelectorMethods.html +./api/scala/quoted/Quotes$reflectModule$GivenSelectorModule.html +./api/scala/quoted/Quotes$reflectModule$IdentMethods.html +./api/scala/quoted/Quotes$reflectModule$IdentModule.html +./api/scala/quoted/Quotes$reflectModule$IfMethods.html +./api/scala/quoted/Quotes$reflectModule$IfModule.html +./api/scala/quoted/Quotes$reflectModule$ImplicitSearchFailureMethods.html +./api/scala/quoted/Quotes$reflectModule$ImplicitSearchSuccessMethods.html +./api/scala/quoted/Quotes$reflectModule$ImplicitsModule.html +./api/scala/quoted/Quotes$reflectModule$ImportMethods.html +./api/scala/quoted/Quotes$reflectModule$ImportModule.html +./api/scala/quoted/Quotes$reflectModule$InferredModule.html +./api/scala/quoted/Quotes$reflectModule$InlinedMethods.html +./api/scala/quoted/Quotes$reflectModule$InlinedModule.html +./api/scala/quoted/Quotes$reflectModule$IntConstantModule.html +./api/scala/quoted/Quotes$reflectModule$LambdaModule.html +./api/scala/quoted/Quotes$reflectModule$LambdaTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$LambdaTypeTreeMethods.html +./api/scala/quoted/Quotes$reflectModule$LambdaTypeTreeModule.html +./api/scala/quoted/Quotes$reflectModule$LiteralMethods.html +./api/scala/quoted/Quotes$reflectModule$LiteralModule.html +./api/scala/quoted/Quotes$reflectModule$LongConstantModule.html +./api/scala/quoted/Quotes$reflectModule$MatchCaseMethods.html +./api/scala/quoted/Quotes$reflectModule$MatchCaseModule.html +./api/scala/quoted/Quotes$reflectModule$MatchMethods.html +./api/scala/quoted/Quotes$reflectModule$MatchModule.html +./api/scala/quoted/Quotes$reflectModule$MatchTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$MatchTypeModule.html +./api/scala/quoted/Quotes$reflectModule$MatchTypeTreeMethods.html +./api/scala/quoted/Quotes$reflectModule$MatchTypeTreeModule.html +./api/scala/quoted/Quotes$reflectModule$MethodTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$MethodTypeModule.html +./api/scala/quoted/Quotes$reflectModule$NamedArgMethods.html +./api/scala/quoted/Quotes$reflectModule$NamedArgModule.html +./api/scala/quoted/Quotes$reflectModule$NamedTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$NewMethods.html +./api/scala/quoted/Quotes$reflectModule$NewModule.html +./api/scala/quoted/Quotes$reflectModule$NoPrefixModule.html +./api/scala/quoted/Quotes$reflectModule$NullConstantModule.html +./api/scala/quoted/Quotes$reflectModule$OmitSelectorMethods.html +./api/scala/quoted/Quotes$reflectModule$OmitSelectorModule.html +./api/scala/quoted/Quotes$reflectModule$OrTypeModule.html +./api/scala/quoted/Quotes$reflectModule$PackageClauseMethods.html +./api/scala/quoted/Quotes$reflectModule$PackageClauseModule.html +./api/scala/quoted/Quotes$reflectModule$ParamClauseMethods.html +./api/scala/quoted/Quotes$reflectModule$ParamClauseModule.html +./api/scala/quoted/Quotes$reflectModule$ParamRefMethods.html +./api/scala/quoted/Quotes$reflectModule$ParamRefModule.html +./api/scala/quoted/Quotes$reflectModule$PolyTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$PolyTypeModule.html +./api/scala/quoted/Quotes$reflectModule$PositionMethods.html +./api/scala/quoted/Quotes$reflectModule$PositionModule.html +./api/scala/quoted/Quotes$reflectModule$Printer.html +./api/scala/quoted/Quotes$reflectModule$PrinterModule.html +./api/scala/quoted/Quotes$reflectModule$RecursiveThisMethods.html +./api/scala/quoted/Quotes$reflectModule$RecursiveThisModule.html +./api/scala/quoted/Quotes$reflectModule$RecursiveTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$RecursiveTypeModule.html +./api/scala/quoted/Quotes$reflectModule$RefModule.html +./api/scala/quoted/Quotes$reflectModule$RefinedMethods.html +./api/scala/quoted/Quotes$reflectModule$RefinedModule.html +./api/scala/quoted/Quotes$reflectModule$RefinementMethods.html +./api/scala/quoted/Quotes$reflectModule$RefinementModule.html +./api/scala/quoted/Quotes$reflectModule$RenameSelectorMethods.html +./api/scala/quoted/Quotes$reflectModule$RenameSelectorModule.html +./api/scala/quoted/Quotes$reflectModule$RepeatedMethods.html +./api/scala/quoted/Quotes$reflectModule$RepeatedModule.html +./api/scala/quoted/Quotes$reflectModule$ReturnMethods.html +./api/scala/quoted/Quotes$reflectModule$ReturnModule.html +./api/scala/quoted/Quotes$reflectModule$SelectMethods.html +./api/scala/quoted/Quotes$reflectModule$SelectModule.html +./api/scala/quoted/Quotes$reflectModule$SelectOuterMethods.html +./api/scala/quoted/Quotes$reflectModule$SelectOuterModule.html +./api/scala/quoted/Quotes$reflectModule$SelectorModule.html +./api/scala/quoted/Quotes$reflectModule$ShortConstantModule.html +./api/scala/quoted/Quotes$reflectModule$SignatureMethods.html +./api/scala/quoted/Quotes$reflectModule$SignatureModule.html +./api/scala/quoted/Quotes$reflectModule$SimpleSelectorMethods.html +./api/scala/quoted/Quotes$reflectModule$SimpleSelectorModule.html +./api/scala/quoted/Quotes$reflectModule$SingletonMethods.html +./api/scala/quoted/Quotes$reflectModule$SingletonModule.html +./api/scala/quoted/Quotes$reflectModule$SourceFileMethods.html +./api/scala/quoted/Quotes$reflectModule$SourceFileModule.html +./api/scala/quoted/Quotes$reflectModule$StringConstantModule.html +./api/scala/quoted/Quotes$reflectModule$SummonFromMethods.html +./api/scala/quoted/Quotes$reflectModule$SummonFromModule.html +./api/scala/quoted/Quotes$reflectModule$SuperMethods.html +./api/scala/quoted/Quotes$reflectModule$SuperModule.html +./api/scala/quoted/Quotes$reflectModule$SuperTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$SuperTypeModule.html +./api/scala/quoted/Quotes$reflectModule$SymbolMethods.html +./api/scala/quoted/Quotes$reflectModule$SymbolModule.html +./api/scala/quoted/Quotes$reflectModule$TermMethods.html +./api/scala/quoted/Quotes$reflectModule$TermModule.html +./api/scala/quoted/Quotes$reflectModule$TermParamClauseMethods.html +./api/scala/quoted/Quotes$reflectModule$TermParamClauseModule.html +./api/scala/quoted/Quotes$reflectModule$TermRefModule.html +./api/scala/quoted/Quotes$reflectModule$ThisMethods.html +./api/scala/quoted/Quotes$reflectModule$ThisModule.html +./api/scala/quoted/Quotes$reflectModule$ThisTypeMethods.html +./api/scala/quoted/Quotes$reflectModule$ThisTypeModule.html +./api/scala/quoted/Quotes$reflectModule$TreeAccumulator.html +./api/scala/quoted/Quotes$reflectModule$TreeMap.html +./api/scala/quoted/Quotes$reflectModule$TreeMethods.html +./api/scala/quoted/Quotes$reflectModule$TreeModule.html +./api/scala/quoted/Quotes$reflectModule$TreeTraverser.html +./api/scala/quoted/Quotes$reflectModule$TryMethods.html +./api/scala/quoted/Quotes$reflectModule$TryModule.html +./api/scala/quoted/Quotes$reflectModule$TypeApplyMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeApplyModule.html +./api/scala/quoted/Quotes$reflectModule$TypeBindMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeBindModule.html +./api/scala/quoted/Quotes$reflectModule$TypeBlockMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeBlockModule.html +./api/scala/quoted/Quotes$reflectModule$TypeBoundsMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeBoundsModule.html +./api/scala/quoted/Quotes$reflectModule$TypeBoundsTreeMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeBoundsTreeModule.html +./api/scala/quoted/Quotes$reflectModule$TypeCaseDefMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeCaseDefModule.html +./api/scala/quoted/Quotes$reflectModule$TypeDefMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeDefModule.html +./api/scala/quoted/Quotes$reflectModule$TypeIdentMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeIdentModule.html +./api/scala/quoted/Quotes$reflectModule$TypeLambdaMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeLambdaModule.html +./api/scala/quoted/Quotes$reflectModule$TypeParamClauseMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeParamClauseModule.html +./api/scala/quoted/Quotes$reflectModule$TypeProjectionMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeProjectionModule.html +./api/scala/quoted/Quotes$reflectModule$TypeRefMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeRefModule.html +./api/scala/quoted/Quotes$reflectModule$TypeReprMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeReprModule.html +./api/scala/quoted/Quotes$reflectModule$TypeSelectMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeSelectModule.html +./api/scala/quoted/Quotes$reflectModule$TypeTreeMethods.html +./api/scala/quoted/Quotes$reflectModule$TypeTreeModule.html +./api/scala/quoted/Quotes$reflectModule$TypedMethods.html +./api/scala/quoted/Quotes$reflectModule$TypedModule.html +./api/scala/quoted/Quotes$reflectModule$TypedOrTestMethods.html +./api/scala/quoted/Quotes$reflectModule$TypedOrTestModule.html +./api/scala/quoted/Quotes$reflectModule$UnapplyMethods.html +./api/scala/quoted/Quotes$reflectModule$UnapplyModule.html +./api/scala/quoted/Quotes$reflectModule$UnitConstantModule.html +./api/scala/quoted/Quotes$reflectModule$ValDefMethods.html +./api/scala/quoted/Quotes$reflectModule$ValDefModule.html +./api/scala/quoted/Quotes$reflectModule$WhileMethods.html +./api/scala/quoted/Quotes$reflectModule$WhileModule.html +./api/scala/quoted/Quotes$reflectModule$WildcardModule.html +./api/scala/quoted/Quotes$reflectModule$WildcardTypeTreeMethods.html +./api/scala/quoted/Quotes$reflectModule$WildcardTypeTreeModule.html +./api/scala/quoted/Quotes$reflectModule$defnModule.html +./api/scala/quoted/Quotes$reflectModule$reportModule.html +./api/scala/quoted/Quotes$reflectModule.html +./api/scala/quoted/Quotes.html +./api/scala/quoted/ToExpr$$ArrayOfBooleanToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfByteToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfCharToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfDoubleToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfFloatToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfIntToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfLongToExpr$.html +./api/scala/quoted/ToExpr$$ArrayOfShortToExpr$.html +./api/scala/quoted/ToExpr$$BigDecimalToExpr$.html +./api/scala/quoted/ToExpr$$BigIntToExpr$.html +./api/scala/quoted/ToExpr$$EmptyTupleToExpr$.html +./api/scala/quoted/ToExpr$$NilToExpr$.html +./api/scala/quoted/ToExpr$$NoneToExpr$.html +./api/scala/quoted/ToExpr$$StringContextToExpr$.html +./api/scala/quoted/ToExpr$.html +./api/scala/quoted/ToExpr.html +./api/scala/quoted/Type$.html +./api/scala/quoted/Type.html +./api/scala/quoted/Varargs$.html +./api/scala/quoted/runtime.html +./api/scala/quoted/runtime/Expr$.html +./api/scala/quoted/runtime/Patterns$$fromAbove.html +./api/scala/quoted/runtime/Patterns$$patternType.html +./api/scala/quoted/runtime/Patterns$.html +./api/scala/quoted/runtime/QuoteMatching$ExprMatchModule.html +./api/scala/quoted/runtime/QuoteMatching$TypeMatchModule.html +./api/scala/quoted/runtime/QuoteMatching.html +./api/scala/quoted/runtime/QuoteUnpickler.html +./api/scala/quoted/runtime/SplicedType.html +./api/scala/quoted/runtime/StopMacroExpansion.html +./api/scala/ref.html +./api/scala/ref/PhantomReference.html +./api/scala/ref/Reference.html +./api/scala/ref/ReferenceQueue.html +./api/scala/ref/ReferenceWrapper.html +./api/scala/ref/SoftReference$.html +./api/scala/ref/SoftReference.html +./api/scala/ref/WeakReference$.html +./api/scala/ref/WeakReference.html +./api/scala/reflect.html +./api/scala/reflect/AnyValManifest.html +./api/scala/reflect/ClassManifestDeprecatedApis.html +./api/scala/reflect/ClassManifestFactory$.html +./api/scala/reflect/ClassTag$.html +./api/scala/reflect/ClassTag.html +./api/scala/reflect/Enum.html +./api/scala/reflect/Manifest$.html +./api/scala/reflect/Manifest.html +./api/scala/reflect/ManifestFactory$.html +./api/scala/reflect/NameTransformer$.html +./api/scala/reflect/NoManifest$.html +./api/scala/reflect/OptManifest.html +./api/scala/reflect/Selectable$.html +./api/scala/reflect/Selectable.html +./api/scala/reflect/TypeTest$.html +./api/scala/reflect/TypeTest.html +./api/scala/runtime.html +./api/scala/runtime/AbstractFunction0.html +./api/scala/runtime/AbstractFunction1.html +./api/scala/runtime/AbstractFunction10.html +./api/scala/runtime/AbstractFunction11.html +./api/scala/runtime/AbstractFunction12.html +./api/scala/runtime/AbstractFunction13.html +./api/scala/runtime/AbstractFunction14.html +./api/scala/runtime/AbstractFunction15.html +./api/scala/runtime/AbstractFunction16.html +./api/scala/runtime/AbstractFunction17.html +./api/scala/runtime/AbstractFunction18.html +./api/scala/runtime/AbstractFunction19.html +./api/scala/runtime/AbstractFunction2.html +./api/scala/runtime/AbstractFunction20.html +./api/scala/runtime/AbstractFunction21.html +./api/scala/runtime/AbstractFunction22.html +./api/scala/runtime/AbstractFunction3.html +./api/scala/runtime/AbstractFunction4.html +./api/scala/runtime/AbstractFunction5.html +./api/scala/runtime/AbstractFunction6.html +./api/scala/runtime/AbstractFunction7.html +./api/scala/runtime/AbstractFunction8.html +./api/scala/runtime/AbstractFunction9.html +./api/scala/runtime/AbstractPartialFunction.html +./api/scala/runtime/ArrayCharSequence.html +./api/scala/runtime/Arrays$.html +./api/scala/runtime/EnumValue.html +./api/scala/runtime/FractionalProxy.html +./api/scala/runtime/FunctionXXL.html +./api/scala/runtime/IntegralProxy.html +./api/scala/runtime/LambdaDeserialize$.html +./api/scala/runtime/LambdaDeserialize.html +./api/scala/runtime/LambdaDeserializer$.html +./api/scala/runtime/LazyBoolean.html +./api/scala/runtime/LazyByte.html +./api/scala/runtime/LazyChar.html +./api/scala/runtime/LazyDouble.html +./api/scala/runtime/LazyFloat.html +./api/scala/runtime/LazyInt.html +./api/scala/runtime/LazyLong.html +./api/scala/runtime/LazyRef.html +./api/scala/runtime/LazyShort.html +./api/scala/runtime/LazyUnit.html +./api/scala/runtime/LazyVals$$Names$.html +./api/scala/runtime/LazyVals$.html +./api/scala/runtime/MatchCase.html +./api/scala/runtime/ModuleSerializationProxy.html +./api/scala/runtime/NonLocalReturnControl.html +./api/scala/runtime/Nothing$.html +./api/scala/runtime/Null$.html +./api/scala/runtime/OrderedProxy.html +./api/scala/runtime/RangedProxy.html +./api/scala/runtime/RichBoolean.html +./api/scala/runtime/RichByte.html +./api/scala/runtime/RichChar.html +./api/scala/runtime/RichDouble.html +./api/scala/runtime/RichFloat.html +./api/scala/runtime/RichInt.html +./api/scala/runtime/RichLong.html +./api/scala/runtime/RichShort.html +./api/scala/runtime/Scala3RunTime$.html +./api/scala/runtime/ScalaNumberProxy.html +./api/scala/runtime/ScalaRunTime$.html +./api/scala/runtime/ScalaWholeNumberProxy.html +./api/scala/runtime/StructuralCallSite$.html +./api/scala/runtime/StructuralCallSite.html +./api/scala/runtime/Tuple2Zipped$$Ops.html +./api/scala/runtime/Tuple2Zipped$.html +./api/scala/runtime/Tuple2Zipped.html +./api/scala/runtime/Tuple3Zipped$$Ops.html +./api/scala/runtime/Tuple3Zipped$.html +./api/scala/runtime/Tuple3Zipped.html +./api/scala/runtime/TupleXXL$.html +./api/scala/runtime/TupleXXL.html +./api/scala/runtime/TupledFunctions$.html +./api/scala/runtime/Tuples$.html +./api/scala/runtime/TypeBox.html +./api/scala/runtime/ZippedIterable2$.html +./api/scala/runtime/ZippedIterable2.html +./api/scala/runtime/ZippedIterable3$.html +./api/scala/runtime/ZippedIterable3.html +./api/scala/runtime/java8.html +./api/scala/runtime/java8/JFunction0$mcB$sp.html +./api/scala/runtime/java8/JFunction0$mcC$sp.html +./api/scala/runtime/java8/JFunction0$mcD$sp.html +./api/scala/runtime/java8/JFunction0$mcF$sp.html +./api/scala/runtime/java8/JFunction0$mcI$sp.html +./api/scala/runtime/java8/JFunction0$mcJ$sp.html +./api/scala/runtime/java8/JFunction0$mcS$sp.html +./api/scala/runtime/java8/JFunction0$mcV$sp.html +./api/scala/runtime/java8/JFunction0$mcZ$sp.html +./api/scala/runtime/java8/JFunction1$mcDD$sp.html +./api/scala/runtime/java8/JFunction1$mcDF$sp.html +./api/scala/runtime/java8/JFunction1$mcDI$sp.html +./api/scala/runtime/java8/JFunction1$mcDJ$sp.html +./api/scala/runtime/java8/JFunction1$mcFD$sp.html +./api/scala/runtime/java8/JFunction1$mcFF$sp.html +./api/scala/runtime/java8/JFunction1$mcFI$sp.html +./api/scala/runtime/java8/JFunction1$mcFJ$sp.html +./api/scala/runtime/java8/JFunction1$mcID$sp.html +./api/scala/runtime/java8/JFunction1$mcIF$sp.html +./api/scala/runtime/java8/JFunction1$mcII$sp.html +./api/scala/runtime/java8/JFunction1$mcIJ$sp.html +./api/scala/runtime/java8/JFunction1$mcJD$sp.html +./api/scala/runtime/java8/JFunction1$mcJF$sp.html +./api/scala/runtime/java8/JFunction1$mcJI$sp.html +./api/scala/runtime/java8/JFunction1$mcJJ$sp.html +./api/scala/runtime/java8/JFunction1$mcVD$sp.html +./api/scala/runtime/java8/JFunction1$mcVF$sp.html +./api/scala/runtime/java8/JFunction1$mcVI$sp.html +./api/scala/runtime/java8/JFunction1$mcVJ$sp.html +./api/scala/runtime/java8/JFunction1$mcZD$sp.html +./api/scala/runtime/java8/JFunction1$mcZF$sp.html +./api/scala/runtime/java8/JFunction1$mcZI$sp.html +./api/scala/runtime/java8/JFunction1$mcZJ$sp.html +./api/scala/runtime/java8/JFunction2$mcDDD$sp.html +./api/scala/runtime/java8/JFunction2$mcDDI$sp.html +./api/scala/runtime/java8/JFunction2$mcDDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcDID$sp.html +./api/scala/runtime/java8/JFunction2$mcDII$sp.html +./api/scala/runtime/java8/JFunction2$mcDIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcDJD$sp.html +./api/scala/runtime/java8/JFunction2$mcDJI$sp.html +./api/scala/runtime/java8/JFunction2$mcDJJ$sp.html +./api/scala/runtime/java8/JFunction2$mcFDD$sp.html +./api/scala/runtime/java8/JFunction2$mcFDI$sp.html +./api/scala/runtime/java8/JFunction2$mcFDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcFID$sp.html +./api/scala/runtime/java8/JFunction2$mcFII$sp.html +./api/scala/runtime/java8/JFunction2$mcFIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcFJD$sp.html +./api/scala/runtime/java8/JFunction2$mcFJI$sp.html +./api/scala/runtime/java8/JFunction2$mcFJJ$sp.html +./api/scala/runtime/java8/JFunction2$mcIDD$sp.html +./api/scala/runtime/java8/JFunction2$mcIDI$sp.html +./api/scala/runtime/java8/JFunction2$mcIDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcIID$sp.html +./api/scala/runtime/java8/JFunction2$mcIII$sp.html +./api/scala/runtime/java8/JFunction2$mcIIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcIJD$sp.html +./api/scala/runtime/java8/JFunction2$mcIJI$sp.html +./api/scala/runtime/java8/JFunction2$mcIJJ$sp.html +./api/scala/runtime/java8/JFunction2$mcJDD$sp.html +./api/scala/runtime/java8/JFunction2$mcJDI$sp.html +./api/scala/runtime/java8/JFunction2$mcJDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcJID$sp.html +./api/scala/runtime/java8/JFunction2$mcJII$sp.html +./api/scala/runtime/java8/JFunction2$mcJIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcJJD$sp.html +./api/scala/runtime/java8/JFunction2$mcJJI$sp.html +./api/scala/runtime/java8/JFunction2$mcJJJ$sp.html +./api/scala/runtime/java8/JFunction2$mcVDD$sp.html +./api/scala/runtime/java8/JFunction2$mcVDI$sp.html +./api/scala/runtime/java8/JFunction2$mcVDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcVID$sp.html +./api/scala/runtime/java8/JFunction2$mcVII$sp.html +./api/scala/runtime/java8/JFunction2$mcVIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcVJD$sp.html +./api/scala/runtime/java8/JFunction2$mcVJI$sp.html +./api/scala/runtime/java8/JFunction2$mcVJJ$sp.html +./api/scala/runtime/java8/JFunction2$mcZDD$sp.html +./api/scala/runtime/java8/JFunction2$mcZDI$sp.html +./api/scala/runtime/java8/JFunction2$mcZDJ$sp.html +./api/scala/runtime/java8/JFunction2$mcZID$sp.html +./api/scala/runtime/java8/JFunction2$mcZII$sp.html +./api/scala/runtime/java8/JFunction2$mcZIJ$sp.html +./api/scala/runtime/java8/JFunction2$mcZJD$sp.html +./api/scala/runtime/java8/JFunction2$mcZJI$sp.html +./api/scala/runtime/java8/JFunction2$mcZJJ$sp.html +./api/scala/runtime/stdLibPatches/language$$3/0$.html +./api/scala/runtime/stdLibPatches/language$$3/0-migration$.html +./api/scala/runtime/stdLibPatches/language$$3/1$.html +./api/scala/runtime/stdLibPatches/language$$3/1-migration$.html +./api/scala/runtime/stdLibPatches/language$$adhocExtensions$.html +./api/scala/runtime/stdLibPatches/language$$deprecated$$symbolLiterals$.html +./api/scala/runtime/stdLibPatches/language$$deprecated$.html +./api/scala/runtime/stdLibPatches/language$$experimental$$erasedDefinitions$.html +./api/scala/runtime/stdLibPatches/language$$experimental$$fewerBraces$.html +./api/scala/runtime/stdLibPatches/language$$experimental$$genericNumberLiterals$.html +./api/scala/runtime/stdLibPatches/language$$experimental$$namedTypeArguments$.html +./api/scala/runtime/stdLibPatches/language$$experimental$$saferExceptions$.html +./api/scala/runtime/stdLibPatches/language$$future$.html +./api/scala/runtime/stdLibPatches/language$$future-migration$.html +./api/scala/runtime/stdLibPatches/language$$noAutoTupling$.html +./api/scala/runtime/stdLibPatches/language$$strictEquality$.html +./api/scala/runtime/stdLibPatches/language$$unsafeNulls$.html +./api/scala/specialized.html +./api/scala/sys.html +./api/scala/sys/BooleanProp$.html +./api/scala/sys/BooleanProp.html +./api/scala/sys/Prop$$Creator.html +./api/scala/sys/Prop$$DoubleProp$.html +./api/scala/sys/Prop$$FileProp$.html +./api/scala/sys/Prop$$IntProp$.html +./api/scala/sys/Prop$$StringProp$.html +./api/scala/sys/Prop$.html +./api/scala/sys/Prop.html +./api/scala/sys/ShutdownHookThread$.html +./api/scala/sys/ShutdownHookThread.html +./api/scala/sys/SystemProperties$.html +./api/scala/sys/SystemProperties.html +./api/scala/sys/process.html +./api/scala/sys/process/BasicIO$.html +./api/scala/sys/process/FileProcessLogger.html +./api/scala/sys/process/Process$.html +./api/scala/sys/process/Process.html +./api/scala/sys/process/ProcessBuilder$$FileBuilder.html +./api/scala/sys/process/ProcessBuilder$$Sink.html +./api/scala/sys/process/ProcessBuilder$$Source.html +./api/scala/sys/process/ProcessBuilder$$URLBuilder.html +./api/scala/sys/process/ProcessBuilder$.html +./api/scala/sys/process/ProcessBuilder.html +./api/scala/sys/process/ProcessCreation.html +./api/scala/sys/process/ProcessIO.html +./api/scala/sys/process/ProcessImplicits.html +./api/scala/sys/process/ProcessLogger$.html +./api/scala/sys/process/ProcessLogger.html +./api/scala/throws.html +./api/scala/transient.html +./api/scala/unchecked.html +./api/scala/unsafeExceptions$.html +./api/scala/util.html +./api/scala/util/ChainingOps.html +./api/scala/util/ChainingSyntax.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Boolean$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Byte$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Double$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Float$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Int$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Long$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_Short$.html +./api/scala/util/CommandLineParser$$FromString$$given_FromString_String$.html +./api/scala/util/CommandLineParser$$FromString$.html +./api/scala/util/CommandLineParser$$FromString.html +./api/scala/util/CommandLineParser$$ParseError.html +./api/scala/util/CommandLineParser$.html +./api/scala/util/DynamicVariable.html +./api/scala/util/Either$$LeftProjection.html +./api/scala/util/Either$$MergeableEither.html +./api/scala/util/Either$$RightProjection.html +./api/scala/util/Either$.html +./api/scala/util/Either.html +./api/scala/util/Failure.html +./api/scala/util/FromDigits$$BigDecimalFromDigits$.html +./api/scala/util/FromDigits$$BigIntFromDigits$.html +./api/scala/util/FromDigits$$Decimal.html +./api/scala/util/FromDigits$$Floating.html +./api/scala/util/FromDigits$$FromDigitsException.html +./api/scala/util/FromDigits$$MalformedNumber.html +./api/scala/util/FromDigits$$NumberTooLarge.html +./api/scala/util/FromDigits$$NumberTooSmall.html +./api/scala/util/FromDigits$$WithRadix.html +./api/scala/util/FromDigits$.html +./api/scala/util/FromDigits.html +./api/scala/util/Left.html +./api/scala/util/LowPriorityNotGiven.html +./api/scala/util/NotGiven$.html +./api/scala/util/NotGiven.html +./api/scala/util/Properties$.html +./api/scala/util/Random$.html +./api/scala/util/Random.html +./api/scala/util/Right.html +./api/scala/util/Sorting$.html +./api/scala/util/Success.html +./api/scala/util/Try$.html +./api/scala/util/Try$WithFilter.html +./api/scala/util/Try.html +./api/scala/util/TupledFunction.html +./api/scala/util/Using$$Manager$.html +./api/scala/util/Using$$Manager.html +./api/scala/util/Using$$Releasable$$AutoCloseableIsReleasable$.html +./api/scala/util/Using$$Releasable$.html +./api/scala/util/Using$$Releasable.html +./api/scala/util/Using$.html +./api/scala/util/chaining$.html +./api/scala/util/control.html +./api/scala/util/control/Breaks$.html +./api/scala/util/control/Breaks$TryBlock.html +./api/scala/util/control/Breaks.html +./api/scala/util/control/ControlThrowable.html +./api/scala/util/control/Exception$$By.html +./api/scala/util/control/Exception$$Catch.html +./api/scala/util/control/Exception$$Described.html +./api/scala/util/control/Exception$$Finally.html +./api/scala/util/control/Exception$.html +./api/scala/util/control/NoStackTrace$.html +./api/scala/util/control/NoStackTrace.html +./api/scala/util/control/NonFatal$.html +./api/scala/util/control/NonLocalReturns$$ReturnThrowable.html +./api/scala/util/control/NonLocalReturns$.html +./api/scala/util/control/TailCalls$$TailRec.html +./api/scala/util/control/TailCalls$.html +./api/scala/util/hashing.html +./api/scala/util/hashing/ByteswapHashing$.html +./api/scala/util/hashing/ByteswapHashing.html +./api/scala/util/hashing/Hashing$$Default.html +./api/scala/util/hashing/Hashing$.html +./api/scala/util/hashing/Hashing.html +./api/scala/util/hashing/MurmurHash3$$ArrayHashing.html +./api/scala/util/hashing/MurmurHash3$.html +./api/scala/util/matching.html +./api/scala/util/matching/Regex$$Groups$.html +./api/scala/util/matching/Regex$$Match$.html +./api/scala/util/matching/Regex$$Match.html +./api/scala/util/matching/Regex$$MatchData.html +./api/scala/util/matching/Regex$$MatchIterator.html +./api/scala/util/matching/Regex$.html +./api/scala/util/matching/Regex.html +./api/scala/util/matching/UnanchoredRegex.html +./api/scala/volatile.html +./blog/2015/10/23/dotty-compiler-bootstraps.html +./blog/2016/01/02/new-year-resolutions.html +./blog/2016/02/03/essence-of-scala.html +./blog/2016/02/17/scaling-dot-soundness.html +./blog/2016/05/05/multiversal-equality.html +./blog/2016/12/05/implicit-function-types.html +./blog/2017/05/31/first-dotty-milestone-release.html +./blog/2017/07/12/second-dotty-milestone-release.html +./blog/2017/09/07/third-dotty-milestone-release.html +./blog/2017/10/16/fourth-dotty-milestone-release.html +./blog/2017/12/01/fifth-dotty-milestone-release.html +./blog/2018/03/05/seventh-dotty-milestone-release.html +./blog/2018/04/27/eighth-dotty-milestone-release.html +./blog/2018/07/06/ninth-dotty-milestone-release.html +./blog/2018/10/10/10th-dotty-milestone-release.html +./blog/2018/11/30/11th-dotty-milestone-release.html +./blog/2019/01/21/12th-dotty-milestone-release.html +./blog/2019/03/05/13th-dotty-milestone-release.html +./blog/2019/04/15/14th-dotty-milestone-release.html +./blog/2019/05/23/15th-dotty-milestone-release.html +./blog/2019/06/11/16th-dotty-milestone-release.html +./blog/2019/07/25/17th-dotty-milestone-release.html +./blog/2019/08/30/18th-dotty-milestone-release.html +./blog/2019/09/23/19th-dotty-milestone-release.html +./blog/2019/11/04/20th-dotty-milestone-release.html +./blog/2019/12/20/21th-dotty-milestone-release.html +./blog/2020/02/05/22nd-dotty-milestone-release.html +./blog/2020/03/18/23rd-dotty-milestone-release.html +./blog/2020/04/29/24th-dotty-milestone-release.html +./blog/2020/06/22/25th-dotty-milestone-release.html +./blog/2020/07/27/26th-dotty-milestone-release.html +./blog/2020/08/31/27th-dotty-milestone-release.html +./blog/2020/09/21/naming-schema-change.html +./blog/2020/11/09/scala3-m1.html +./blog/2020/12/18/scala3-m3.html +./blog/2021/02/17/scala3-rc1.html +./blog/2021/03/31/scala3-rc2.html +./blog/2021/04/21/scala3-rc3.html +./blog/2021/06/07/scala3.0.1-rc1-release.html +./blog/2021/06/25/scala301-rc2.html +./blog/index.html +./docs/contributing/contribute-knowledge.html +./docs/contributing/debugging.html +./docs/contributing/getting-started.html +./docs/contributing/index.html +./docs/contributing/procedures/index.html +./docs/contributing/procedures/release.html +./docs/contributing/procedures/vulpix.html +./docs/contributing/testing.html +./docs/contributing/tools/ide.html +./docs/contributing/tools/index.html +./docs/contributing/tools/mill.html +./docs/contributing/tools/scalafix.html +./docs/contributing/workflow.html +./docs/index.html +./docs/internals/backend.html +./docs/internals/classpaths.html +./docs/internals/contexts.html +./docs/internals/core-data-structures.html +./docs/internals/debug-macros.html +./docs/internals/dotc-scalac.html +./docs/internals/dotty-internals-1-notes.html +./docs/internals/higher-kinded-v2.html +./docs/internals/index.html +./docs/internals/overall-structure.html +./docs/internals/periods.html +./docs/internals/syntax.html +./docs/internals/type-system.html +./docs/reference/changed-features/compiler-plugins.html +./docs/reference/changed-features/eta-expansion-spec.html +./docs/reference/changed-features/eta-expansion.html +./docs/reference/changed-features/implicit-conversions-spec.html +./docs/reference/changed-features/implicit-conversions.html +./docs/reference/changed-features/implicit-resolution.html +./docs/reference/changed-features/imports.html +./docs/reference/changed-features/index.html +./docs/reference/changed-features/lazy-vals-init.html +./docs/reference/changed-features/main-functions.html +./docs/reference/changed-features/match-syntax.html +./docs/reference/changed-features/numeric-literals.html +./docs/reference/changed-features/operators.html +./docs/reference/changed-features/overload-resolution.html +./docs/reference/changed-features/pattern-bindings.html +./docs/reference/changed-features/pattern-matching.html +./docs/reference/changed-features/structural-types-spec.html +./docs/reference/changed-features/structural-types.html +./docs/reference/changed-features/type-checking.html +./docs/reference/changed-features/type-inference.html +./docs/reference/changed-features/vararg-splices.html +./docs/reference/changed-features/wildcards.html +./docs/reference/contextual/by-name-context-parameters.html +./docs/reference/contextual/context-bounds.html +./docs/reference/contextual/context-functions-spec.html +./docs/reference/contextual/context-functions.html +./docs/reference/contextual/conversions.html +./docs/reference/contextual/derivation-macro.html +./docs/reference/contextual/derivation.html +./docs/reference/contextual/extension-methods.html +./docs/reference/contextual/given-imports.html +./docs/reference/contextual/givens.html +./docs/reference/contextual/index.html +./docs/reference/contextual/multiversal-equality.html +./docs/reference/contextual/relationship-implicits.html +./docs/reference/contextual/right-associative-extension-methods.html +./docs/reference/contextual/type-classes.html +./docs/reference/contextual/using-clauses.html +./docs/reference/dropped-features/auto-apply.html +./docs/reference/dropped-features/class-shadowing-spec.html +./docs/reference/dropped-features/class-shadowing.html +./docs/reference/dropped-features/delayed-init.html +./docs/reference/dropped-features/do-while.html +./docs/reference/dropped-features/early-initializers.html +./docs/reference/dropped-features/existential-types.html +./docs/reference/dropped-features/index.html +./docs/reference/dropped-features/limit22.html +./docs/reference/dropped-features/macros.html +./docs/reference/dropped-features/nonlocal-returns.html +./docs/reference/dropped-features/package-objects.html +./docs/reference/dropped-features/procedure-syntax.html +./docs/reference/dropped-features/symlits.html +./docs/reference/dropped-features/this-qualifier.html +./docs/reference/dropped-features/type-projection.html +./docs/reference/dropped-features/weak-conformance-spec.html +./docs/reference/dropped-features/weak-conformance.html +./docs/reference/dropped-features/wildcard-init.html +./docs/reference/dropped-features/xml.html +./docs/reference/enums/adts.html +./docs/reference/enums/desugarEnums.html +./docs/reference/enums/enums.html +./docs/reference/enums/index.html +./docs/reference/experimental/canthrow.html +./docs/reference/experimental/cc.html +./docs/reference/experimental/erased-defs-spec.html +./docs/reference/experimental/erased-defs.html +./docs/reference/experimental/explicit-nulls.html +./docs/reference/experimental/index.html +./docs/reference/experimental/named-typeargs-spec.html +./docs/reference/experimental/named-typeargs.html +./docs/reference/experimental/numeric-literals.html +./docs/reference/experimental/overview.html +./docs/reference/experimental/tupled-function.html +./docs/reference/features-classification.html +./docs/reference/index.html +./docs/reference/language-versions/binary-compatibility.html +./docs/reference/language-versions/index.html +./docs/reference/language-versions/source-compatibility.html +./docs/reference/metaprogramming/compiletime-ops.html +./docs/reference/metaprogramming/index.html +./docs/reference/metaprogramming/inline.html +./docs/reference/metaprogramming/macros-spec.html +./docs/reference/metaprogramming/macros.html +./docs/reference/metaprogramming/reflection.html +./docs/reference/metaprogramming/staging.html +./docs/reference/metaprogramming/tasty-inspect.html +./docs/reference/new-types/dependent-function-types-spec.html +./docs/reference/new-types/dependent-function-types.html +./docs/reference/new-types/index.html +./docs/reference/new-types/intersection-types-spec.html +./docs/reference/new-types/intersection-types.html +./docs/reference/new-types/match-types.html +./docs/reference/new-types/polymorphic-function-types.html +./docs/reference/new-types/type-lambdas-spec.html +./docs/reference/new-types/type-lambdas.html +./docs/reference/new-types/union-types-spec.html +./docs/reference/new-types/union-types.html +./docs/reference/other-new-features/control-syntax.html +./docs/reference/other-new-features/creator-applications.html +./docs/reference/other-new-features/experimental-defs.html +./docs/reference/other-new-features/export.html +./docs/reference/other-new-features/indentation.html +./docs/reference/other-new-features/index.html +./docs/reference/other-new-features/kind-polymorphism.html +./docs/reference/other-new-features/matchable.html +./docs/reference/other-new-features/named-typeargs.html +./docs/reference/other-new-features/opaques-details.html +./docs/reference/other-new-features/opaques.html +./docs/reference/other-new-features/open-classes.html +./docs/reference/other-new-features/parameter-untupling-spec.html +./docs/reference/other-new-features/parameter-untupling.html +./docs/reference/other-new-features/safe-initialization.html +./docs/reference/other-new-features/targetName.html +./docs/reference/other-new-features/threadUnsafe-annotation.html +./docs/reference/other-new-features/trait-parameters.html +./docs/reference/other-new-features/transparent-traits.html +./docs/reference/other-new-features/type-test.html +./docs/reference/overview.html +./docs/reference/soft-modifier.html +./docs/reference/syntax.html +./docs/release-notes/0.1.2.html +./docs/usage/cbt-projects.html +./docs/usage/ide-support.html +./docs/usage/index.html +./docs/usage/sbt-projects.html +./docs/usage/scaladoc/docstrings.html +./docs/usage/scaladoc/index.html +./docs/usage/scaladoc/linking.html +./docs/usage/scaladoc/search-engine.html +./docs/usage/scaladoc/settings.html +./docs/usage/scaladoc/site-versioning.html +./docs/usage/scaladoc/static-site.html +./docsScalaLangResources/scaladoc-assets.html +./index.html +./release-notes-0.1.2.html diff --git a/project/scripts/regenerateExpectedLinks b/project/scripts/regenerateExpectedLinks new file mode 100755 index 000000000000..95369f826e54 --- /dev/null +++ b/project/scripts/regenerateExpectedLinks @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +set -u + +echo "Regenerating expected links in documentation" + +DOCS_DIR=$1 # The location of documentation is passed as a first parameter + +EXPECTED_LINKS_FILE=$2 # The location of expected-links.txt is passed as a second parameter + +pushd $DOCS_DIR > /dev/null # Go to docs dir but remember previous location +# We need to go to docs dir to make find return correct relative paths +find . -type f -name "*.html" | (popd > /dev/null; sort > $2;) +# We list every html file in documentation, then sort it and finally write it to the expected links list file. +# Before writing we need to popd to return to the previous location because we don't have relative path to the expected links file. +