├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── action.yml ├── archetypes └── default.md ├── assets ├── images │ └── functions │ │ ├── 404.tex │ │ ├── _footer.tex │ │ ├── _function.tex │ │ ├── _header.tex │ │ ├── _preamble.tex │ │ ├── _style.tex │ │ ├── aggregate.tex │ │ ├── andThen.tex │ │ ├── appended.tex │ │ ├── appendedAll.tex │ │ ├── chain.tex │ │ ├── collect.tex │ │ ├── collectFirst.2.tex │ │ ├── collectFirst.tex │ │ ├── combinations.tex │ │ ├── compose.tex │ │ ├── concat.tex │ │ ├── cond.2.tex │ │ ├── cond.tex │ │ ├── condOpt.2.tex │ │ ├── condOpt.tex │ │ ├── const.tex │ │ ├── contains.2.tex │ │ ├── contains.tex │ │ ├── containsSlice.2.tex │ │ ├── containsSlice.tex │ │ ├── copyToArray.2.tex │ │ ├── copyToArray.3.tex │ │ ├── copyToArray.4.tex │ │ ├── copyToArray.tex │ │ ├── corresponds.2.tex │ │ ├── corresponds.tex │ │ ├── count.tex │ │ ├── curried.tex │ │ ├── diff.tex │ │ ├── distinct.tex │ │ ├── distinctBy.tex │ │ ├── drop.tex │ │ ├── dropRight.tex │ │ ├── dropWhile.tex │ │ ├── empty_PartialFunction.tex │ │ ├── empty_collections.tex │ │ ├── endsWith.2.tex │ │ ├── endsWith.tex │ │ ├── exists.2.tex │ │ ├── exists.tex │ │ ├── fill.tex │ │ ├── filter.tex │ │ ├── filterKeys.tex │ │ ├── filterNot.tex │ │ ├── find.2.tex │ │ ├── find.tex │ │ ├── findLast.2.tex │ │ ├── findLast.tex │ │ ├── flatMap.tex │ │ ├── flatten.tex │ │ ├── fold.tex │ │ ├── foldLeft.2.tex │ │ ├── foldLeft.tex │ │ ├── foldRight.2.tex │ │ ├── foldRight.tex │ │ ├── forall.2.tex │ │ ├── forall.tex │ │ ├── foreach.tex │ │ ├── fromFunction.tex │ │ ├── getOrElse_Map.2.tex │ │ ├── getOrElse_Map.tex │ │ ├── getOrElse_Option.2.tex │ │ ├── getOrElse_Option.tex │ │ ├── groupBy.tex │ │ ├── groupMap.tex │ │ ├── groupMapReduce.tex │ │ ├── grouped.tex │ │ ├── head.2.tex │ │ ├── head.tex │ │ ├── headOption.2.tex │ │ ├── headOption.tex │ │ ├── indexOf.2.tex │ │ ├── indexOf.3.tex │ │ ├── indexOf.tex │ │ ├── indexOfSlice.2.tex │ │ ├── indexOfSlice.3.tex │ │ ├── indexOfSlice.tex │ │ ├── indexWhere.2.tex │ │ ├── indexWhere.3.tex │ │ ├── indexWhere.tex │ │ ├── indices.tex │ │ ├── init.2.tex │ │ ├── init.tex │ │ ├── inits.tex │ │ ├── intersect.tex │ │ ├── isDefinedAt_Map.2.tex │ │ ├── isDefinedAt_Map.tex │ │ ├── isDefinedAt_Seq.2.tex │ │ ├── isDefinedAt_Seq.tex │ │ ├── isEmpty.2.tex │ │ ├── isEmpty.tex │ │ ├── isTraversableAgain.2.tex │ │ ├── isTraversableAgain.tex │ │ ├── keys.tex │ │ ├── last.2.tex │ │ ├── last.tex │ │ ├── lastIndexOf.2.tex │ │ ├── lastIndexOf.3.tex │ │ ├── lastIndexOf.tex │ │ ├── lastIndexOfSlice.2.tex │ │ ├── lastIndexOfSlice.3.tex │ │ ├── lastIndexOfSlice.tex │ │ ├── lastIndexWhere.2.tex │ │ ├── lastIndexWhere.3.tex │ │ ├── lastIndexWhere.tex │ │ ├── lastOption.2.tex │ │ ├── lastOption.tex │ │ ├── length.tex │ │ ├── lift.2.tex │ │ ├── lift.tex │ │ ├── map.tex │ │ ├── mapConserve.2.tex │ │ ├── mapConserve.tex │ │ ├── mapValues.tex │ │ ├── max.2.tex │ │ ├── max.tex │ │ ├── maxBy.2.tex │ │ ├── maxBy.tex │ │ ├── maxByOption.2.tex │ │ ├── maxByOption.tex │ │ ├── maxOption.2.tex │ │ ├── maxOption.tex │ │ ├── min.2.tex │ │ ├── min.tex │ │ ├── minBy.2.tex │ │ ├── minBy.tex │ │ ├── minByOption.2.tex │ │ ├── minByOption.tex │ │ ├── minOption.2.tex │ │ ├── minOption.tex │ │ ├── mkString.tex │ │ ├── nonEmpty.2.tex │ │ ├── nonEmpty.tex │ │ ├── orElse.2.tex │ │ ├── orElse.3.tex │ │ ├── orElse.tex │ │ ├── padTo.tex │ │ ├── partition.tex │ │ ├── partitionMap.tex │ │ ├── patch.tex │ │ ├── permutations.tex │ │ ├── prefixLength.tex │ │ ├── prepended.tex │ │ ├── prependedAll.tex │ │ ├── product.2.tex │ │ ├── product.tex │ │ ├── range.2.tex │ │ ├── range.tex │ │ ├── reduce.2.tex │ │ ├── reduce.tex │ │ ├── reduceLeft.2.tex │ │ ├── reduceLeft.3.tex │ │ ├── reduceLeft.tex │ │ ├── reduceLeftOption.2.tex │ │ ├── reduceLeftOption.tex │ │ ├── reduceOption.2.tex │ │ ├── reduceOption.tex │ │ ├── reduceRight.2.tex │ │ ├── reduceRight.3.tex │ │ ├── reduceRight.tex │ │ ├── reduceRightOption.2.tex │ │ ├── reduceRightOption.tex │ │ ├── removed.tex │ │ ├── reverse.tex │ │ ├── reverseMap.tex │ │ ├── runWith.2.tex │ │ ├── runWith.tex │ │ ├── sameElements.2.tex │ │ ├── sameElements.tex │ │ ├── scanLeft.tex │ │ ├── scanRight.tex │ │ ├── search.2.tex │ │ ├── search.3.tex │ │ ├── search.tex │ │ ├── segmentLength.tex │ │ ├── size.tex │ │ ├── slice.tex │ │ ├── sliding.tex │ │ ├── sortBy.tex │ │ ├── sortWith.tex │ │ ├── sorted.tex │ │ ├── span.tex │ │ ├── splitAt.tex │ │ ├── startsWith.2.tex │ │ ├── startsWith.3.tex │ │ ├── startsWith.tex │ │ ├── sum.2.tex │ │ ├── sum.tex │ │ ├── tabulate.tex │ │ ├── tail.2.tex │ │ ├── tail.tex │ │ ├── tails.tex │ │ ├── take.tex │ │ ├── takeRight.tex │ │ ├── takeWhile.tex │ │ ├── transpose.2.tex │ │ ├── transpose.tex │ │ ├── tupled.tex │ │ ├── uncurried.tex │ │ ├── unfold.tex │ │ ├── union.tex │ │ ├── unlift.2.tex │ │ ├── unlift.tex │ │ ├── untupled.tex │ │ ├── unzip.tex │ │ ├── unzip3.tex │ │ ├── updated.tex │ │ ├── values.tex │ │ ├── withDefault.tex │ │ ├── withDefaultValue.tex │ │ ├── zip.tex │ │ ├── zipAll.tex │ │ └── zipWithIndex.tex └── scss │ └── main.scss ├── config.toml ├── content ├── en │ ├── _index.md │ ├── contributors.md │ └── functions │ │ ├── aggregate.md │ │ ├── andThen.md │ │ ├── appended.md │ │ ├── appendedAll.md │ │ ├── chain.md │ │ ├── collect.md │ │ ├── collectFirst.md │ │ ├── combinations.md │ │ ├── compose.md │ │ ├── concat.md │ │ ├── cond.md │ │ ├── condOpt.md │ │ ├── const.md │ │ ├── contains.md │ │ ├── containsSlice.md │ │ ├── copyToArray.md │ │ ├── corresponds.md │ │ ├── count.md │ │ ├── curried.md │ │ ├── diff.md │ │ ├── distinct.md │ │ ├── distinctBy.md │ │ ├── drop.md │ │ ├── dropRight.md │ │ ├── dropWhile.md │ │ ├── empty_PartialFunction.md │ │ ├── empty_collections.md │ │ ├── endsWith.md │ │ ├── exists.md │ │ ├── fill.md │ │ ├── filter.md │ │ ├── filterKeys.md │ │ ├── filterNot.md │ │ ├── find.md │ │ ├── findLast.md │ │ ├── flatMap.md │ │ ├── flatten.md │ │ ├── fold.md │ │ ├── foldLeft.md │ │ ├── foldRight.md │ │ ├── forall.md │ │ ├── foreach.md │ │ ├── fromFunction.md │ │ ├── getOrElse_Map.md │ │ ├── getOrElse_Option.md │ │ ├── groupBy.md │ │ ├── groupMap.md │ │ ├── groupMapReduce.md │ │ ├── grouped.md │ │ ├── head.md │ │ ├── headOption.md │ │ ├── indexOf.md │ │ ├── indexOfSlice.md │ │ ├── indexWhere.md │ │ ├── indices.md │ │ ├── init.md │ │ ├── inits.md │ │ ├── intersect.md │ │ ├── isDefinedAt_Map.md │ │ ├── isDefinedAt_Seq.md │ │ ├── isEmpty.md │ │ ├── isTraversableAgain.md │ │ ├── keys.md │ │ ├── last.md │ │ ├── lastIndexOf.md │ │ ├── lastIndexOfSlice.md │ │ ├── lastIndexWhere.md │ │ ├── lastOption.md │ │ ├── length.md │ │ ├── lift.md │ │ ├── map.md │ │ ├── mapConserve.md │ │ ├── mapValues.md │ │ ├── max.md │ │ ├── maxBy.md │ │ ├── maxByOption.md │ │ ├── maxOption.md │ │ ├── min.md │ │ ├── minBy.md │ │ ├── minByOption.md │ │ ├── minOption.md │ │ ├── mkString.md │ │ ├── nonEmpty.md │ │ ├── orElse.md │ │ ├── padTo.md │ │ ├── partition.md │ │ ├── partitionMap.md │ │ ├── patch.md │ │ ├── permutations.md │ │ ├── prefixLength.md │ │ ├── prepended.md │ │ ├── prependedAll.md │ │ ├── product.md │ │ ├── range.md │ │ ├── reduce.md │ │ ├── reduceLeft.md │ │ ├── reduceLeftOption.md │ │ ├── reduceOption.md │ │ ├── reduceRight.md │ │ ├── reduceRightOption.md │ │ ├── removed.md │ │ ├── reverse.md │ │ ├── reverseMap.md │ │ ├── runWith.md │ │ ├── sameElements.md │ │ ├── scanLeft.md │ │ ├── scanRight.md │ │ ├── search.md │ │ ├── segmentLength.md │ │ ├── size.md │ │ ├── slice.md │ │ ├── sliding.md │ │ ├── sortBy.md │ │ ├── sortWith.md │ │ ├── sorted.md │ │ ├── span.md │ │ ├── splitAt.md │ │ ├── startsWith.md │ │ ├── sum.md │ │ ├── tabulate.md │ │ ├── tail.md │ │ ├── tails.md │ │ ├── take.md │ │ ├── takeRight.md │ │ ├── takeWhile.md │ │ ├── transpose.md │ │ ├── tupled.md │ │ ├── uncurried.md │ │ ├── unfold.md │ │ ├── union.md │ │ ├── unlift.md │ │ ├── untupled.md │ │ ├── unzip.md │ │ ├── unzip3.md │ │ ├── updated.md │ │ ├── values.md │ │ ├── withDefault.md │ │ ├── withDefaultValue.md │ │ ├── zip.md │ │ ├── zipAll.md │ │ └── zipWithIndex.md ├── es │ ├── _index.md │ └── functions │ │ ├── aggregate.md │ │ ├── andThen.md │ │ ├── appended.md │ │ ├── appendedAll.md │ │ ├── chain.md │ │ ├── collect.md │ │ ├── collectFirst.md │ │ ├── combinations.md │ │ ├── compose.md │ │ ├── concat.md │ │ ├── cond.md │ │ ├── condOpt.md │ │ ├── const.md │ │ ├── contains.md │ │ ├── containsSlice.md │ │ ├── copyToArray.md │ │ ├── corresponds.md │ │ ├── count.md │ │ ├── curried.md │ │ ├── diff.md │ │ ├── distinct.md │ │ ├── distinctBy.md │ │ ├── drop.md │ │ ├── dropRight.md │ │ ├── dropWhile.md │ │ ├── empty_PartialFunction.md │ │ ├── empty_collections.md │ │ ├── endsWith.md │ │ ├── exists.md │ │ ├── fill.md │ │ ├── filter.md │ │ ├── filterKeys.md │ │ ├── filterNot.md │ │ ├── find.md │ │ ├── findLast.md │ │ ├── flatMap.md │ │ ├── flatten.md │ │ ├── fold.md │ │ ├── foldLeft.md │ │ ├── foldRight.md │ │ ├── forall.md │ │ ├── foreach.md │ │ ├── fromFunction.md │ │ ├── getOrElse_Map.md │ │ ├── getOrElse_Option.md │ │ ├── groupBy.md │ │ ├── groupMap.md │ │ ├── groupMapReduce.md │ │ ├── grouped.md │ │ ├── head.md │ │ ├── headOption.md │ │ ├── indexOf.md │ │ ├── indexOfSlice.md │ │ ├── indexWhere.md │ │ ├── indices.md │ │ ├── init.md │ │ ├── inits.md │ │ ├── intersect.md │ │ ├── isDefinedAt_Map.md │ │ ├── isDefinedAt_Seq.md │ │ ├── isEmpty.md │ │ ├── isTraversableAgain.md │ │ ├── keys.md │ │ ├── last.md │ │ ├── lastIndexOf.md │ │ ├── lastIndexOfSlice.md │ │ ├── lastIndexWhere.md │ │ ├── lastOption.md │ │ ├── length.md │ │ ├── lift.md │ │ ├── map.md │ │ ├── mapConserve.md │ │ ├── mapValues.md │ │ ├── max.md │ │ ├── maxBy.md │ │ ├── maxByOption.md │ │ ├── maxOption.md │ │ ├── min.md │ │ ├── minBy.md │ │ ├── minByOption.md │ │ ├── minOption.md │ │ ├── mkString.md │ │ ├── nonEmpty.md │ │ ├── orElse.md │ │ ├── padTo.md │ │ ├── partition.md │ │ ├── partitionMap.md │ │ ├── patch.md │ │ ├── permutations.md │ │ ├── prefixLength.md │ │ ├── prepended.md │ │ ├── prependedAll.md │ │ ├── product.md │ │ ├── range.md │ │ ├── reduce.md │ │ ├── reduceLeft.md │ │ ├── reduceLeftOption.md │ │ ├── reduceOption.md │ │ ├── reduceRight.md │ │ ├── reduceRightOption.md │ │ ├── removed.md │ │ ├── reverse.md │ │ ├── reverseMap.md │ │ ├── runWith.md │ │ ├── sameElements.md │ │ ├── scanLeft.md │ │ ├── scanRight.md │ │ ├── search.md │ │ ├── segmentLength.md │ │ ├── size.md │ │ ├── slice.md │ │ ├── sliding.md │ │ ├── sortBy.md │ │ ├── sortWith.md │ │ ├── sorted.md │ │ ├── span.md │ │ ├── splitAt.md │ │ ├── startsWith.md │ │ ├── sum.md │ │ ├── tabulate.md │ │ ├── tail.md │ │ ├── tails.md │ │ ├── take.md │ │ ├── takeRight.md │ │ ├── takeWhile.md │ │ ├── transpose.md │ │ ├── tupled.md │ │ ├── uncurried.md │ │ ├── unfold.md │ │ ├── union.md │ │ ├── unlift.md │ │ ├── untupled.md │ │ ├── unzip.md │ │ ├── unzip3.md │ │ ├── updated.md │ │ ├── values.md │ │ ├── withDefault.md │ │ ├── withDefaultValue.md │ │ ├── zip.md │ │ ├── zipAll.md │ │ └── zipWithIndex.md ├── ja │ ├── _index.md │ └── functions │ │ ├── aggregate.md │ │ ├── andThen.md │ │ ├── appended.md │ │ ├── appendedAll.md │ │ ├── chain.md │ │ ├── collect.md │ │ ├── collectFirst.md │ │ ├── combinations.md │ │ ├── compose.md │ │ ├── concat.md │ │ ├── cond.md │ │ ├── condOpt.md │ │ ├── const.md │ │ ├── contains.md │ │ ├── containsSlice.md │ │ ├── copyToArray.md │ │ ├── corresponds.md │ │ ├── count.md │ │ ├── curried.md │ │ ├── diff.md │ │ ├── distinct.md │ │ ├── distinctBy.md │ │ ├── drop.md │ │ ├── dropRight.md │ │ ├── dropWhile.md │ │ ├── empty_PartialFunction.md │ │ ├── empty_collections.md │ │ ├── endsWith.md │ │ ├── exists.md │ │ ├── fill.md │ │ ├── filter.md │ │ ├── filterKeys.md │ │ ├── filterNot.md │ │ ├── find.md │ │ ├── findLast.md │ │ ├── flatMap.md │ │ ├── flatten.md │ │ ├── fold.md │ │ ├── foldLeft.md │ │ ├── foldRight.md │ │ ├── forall.md │ │ ├── foreach.md │ │ ├── fromFunction.md │ │ ├── getOrElse_Map.md │ │ ├── getOrElse_Option.md │ │ ├── groupBy.md │ │ ├── groupMap.md │ │ ├── groupMapReduce.md │ │ ├── grouped.md │ │ ├── head.md │ │ ├── headOption.md │ │ ├── indexOf.md │ │ ├── indexOfSlice.md │ │ ├── indexWhere.md │ │ ├── indices.md │ │ ├── init.md │ │ ├── inits.md │ │ ├── intersect.md │ │ ├── isDefinedAt_Map.md │ │ ├── isDefinedAt_Seq.md │ │ ├── isEmpty.md │ │ ├── keys.md │ │ ├── last.md │ │ ├── lastIndexOf.md │ │ ├── lastIndexOfSlice.md │ │ ├── lastIndexWhere.md │ │ ├── lastOption.md │ │ ├── length.md │ │ ├── lift.md │ │ ├── map.md │ │ ├── mapConserve.md │ │ ├── mapValues.md │ │ ├── max.md │ │ ├── maxBy.md │ │ ├── maxByOption.md │ │ ├── maxOption.md │ │ ├── min.md │ │ ├── minBy.md │ │ ├── minByOption.md │ │ ├── minOption.md │ │ ├── mkString.md │ │ ├── nonEmpty.md │ │ ├── orElse.md │ │ ├── padTo.md │ │ ├── partition.md │ │ ├── partitionMap.md │ │ ├── patch.md │ │ ├── permutations.md │ │ ├── prefixLength.md │ │ ├── prepended.md │ │ ├── prependedAll.md │ │ ├── product.md │ │ ├── range.md │ │ ├── reduce.md │ │ ├── reduceLeft.md │ │ ├── reduceLeftOption.md │ │ ├── reduceOption.md │ │ ├── reduceRight.md │ │ ├── reduceRightOption.md │ │ ├── removed.md │ │ ├── reverse.md │ │ ├── reverseMap.md │ │ ├── runWith.md │ │ ├── sameElements.md │ │ ├── scanLeft.md │ │ ├── scanRight.md │ │ ├── search.md │ │ ├── segmentLength.md │ │ ├── size.md │ │ ├── slice.md │ │ ├── sliding.md │ │ ├── sortBy.md │ │ ├── sortWith.md │ │ ├── sorted.md │ │ ├── span.md │ │ ├── splitAt.md │ │ ├── startsWith.md │ │ ├── sum.md │ │ ├── tabulate.md │ │ ├── tail.md │ │ ├── tails.md │ │ ├── take.md │ │ ├── takeRight.md │ │ ├── takeWhile.md │ │ ├── transpose.md │ │ ├── tupled.md │ │ ├── uncurried.md │ │ ├── unfold.md │ │ ├── union.md │ │ ├── unlift.md │ │ ├── untupled.md │ │ ├── unzip.md │ │ ├── unzip3.md │ │ ├── updated.md │ │ ├── values.md │ │ ├── withDefault.md │ │ ├── withDefaultValue.md │ │ ├── zip.md │ │ ├── zipAll.md │ │ └── zipWithIndex.md └── pt │ ├── _index.md │ └── functions │ ├── aggregate.md │ ├── andThen.md │ ├── appended.md │ ├── appendedAll.md │ ├── chain.md │ ├── collect.md │ ├── collectFirst.md │ ├── combinations.md │ ├── compose.md │ ├── concat.md │ ├── cond.md │ ├── condOpt.md │ ├── const.md │ ├── contains.md │ ├── containsSlice.md │ ├── copyToArray.md │ ├── corresponds.md │ ├── count.md │ ├── curried.md │ ├── diff.md │ ├── distinct.md │ ├── distinctBy.md │ ├── drop.md │ ├── dropRight.md │ ├── dropWhile.md │ ├── empty_PartialFunction.md │ ├── empty_collections.md │ ├── endsWith.md │ ├── exists.md │ ├── fill.md │ ├── filter.md │ ├── filterKeys.md │ ├── filterNot.md │ ├── find.md │ ├── findLast.md │ ├── flatMap.md │ ├── flatten.md │ ├── fold.md │ ├── foldLeft.md │ ├── foldRight.md │ ├── forall.md │ ├── foreach.md │ ├── fromFunction.md │ ├── getOrElse_Map.md │ ├── getOrElse_Option.md │ ├── groupBy.md │ ├── groupMap.md │ ├── groupMapReduce.md │ ├── grouped.md │ ├── head.md │ ├── headOption.md │ ├── indexOf.md │ ├── indexOfSlice.md │ ├── indexWhere.md │ ├── indices.md │ ├── init.md │ ├── inits.md │ ├── intersect.md │ ├── isDefinedAt_Map.md │ ├── isDefinedAt_Seq.md │ ├── isEmpty.md │ ├── isTraversableAgain.md │ ├── keys.md │ ├── last.md │ ├── lastIndexOf.md │ ├── lastIndexOfSlice.md │ ├── lastIndexWhere.md │ ├── lastOption.md │ ├── length.md │ ├── lift.md │ ├── map.md │ ├── mapConserve.md │ ├── mapValues.md │ ├── max.md │ ├── maxBy.md │ ├── maxByOption.md │ ├── maxOption.md │ ├── min.md │ ├── minBy.md │ ├── minByOption.md │ ├── minOption.md │ ├── mkString.md │ ├── nonEmpty.md │ ├── orElse.md │ ├── padTo.md │ ├── partition.md │ ├── partitionMap.md │ ├── patch.md │ ├── permutations.md │ ├── prefixLength.md │ ├── prepended.md │ ├── prependedAll.md │ ├── product.md │ ├── range.md │ ├── reduce.md │ ├── reduceLeft.md │ ├── reduceLeftOption.md │ ├── reduceOption.md │ ├── reduceRight.md │ ├── reduceRightOption.md │ ├── removed.md │ ├── reverse.md │ ├── reverseMap.md │ ├── runWith.md │ ├── sameElements.md │ ├── scanLeft.md │ ├── scanRight.md │ ├── search.md │ ├── segmentLength.md │ ├── size.md │ ├── slice.md │ ├── sliding.md │ ├── sortBy.md │ ├── sortWith.md │ ├── sorted.md │ ├── span.md │ ├── splitAt.md │ ├── startsWith.md │ ├── sum.md │ ├── tabulate.md │ ├── tail.md │ ├── tails.md │ ├── take.md │ ├── takeRight.md │ ├── takeWhile.md │ ├── transpose.md │ ├── tupled.md │ ├── uncurried.md │ ├── unfold.md │ ├── union.md │ ├── unlift.md │ ├── untupled.md │ ├── unzip.md │ ├── unzip3.md │ ├── updated.md │ ├── values.md │ ├── withDefault.md │ ├── withDefaultValue.md │ ├── zip.md │ ├── zipAll.md │ └── zipWithIndex.md ├── data ├── contributors.yaml └── signatures.yaml ├── entrypoint.sh ├── i18n ├── en.toml ├── es.toml ├── ja.toml └── pt.toml ├── layouts ├── 404.html ├── _default │ └── baseof.html ├── contributors │ └── single.html ├── functions │ └── single.html ├── home.html ├── partials │ ├── footer.html │ ├── ga.html │ ├── header.html │ └── translations.html └── shortcodes │ ├── figure.html │ └── signature.html └── static ├── images ├── logo.svg ├── scala-logo-144x144.png ├── scala-logo-16x16.png ├── scala-logo-57x57.png ├── scala-logo-72x72.png └── scala-logo.svg └── scripts └── search.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/action.yml -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/images/functions/404.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/404.tex -------------------------------------------------------------------------------- /assets/images/functions/_footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/_footer.tex -------------------------------------------------------------------------------- /assets/images/functions/_function.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/_function.tex -------------------------------------------------------------------------------- /assets/images/functions/_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/_header.tex -------------------------------------------------------------------------------- /assets/images/functions/_preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/_preamble.tex -------------------------------------------------------------------------------- /assets/images/functions/_style.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/_style.tex -------------------------------------------------------------------------------- /assets/images/functions/aggregate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/aggregate.tex -------------------------------------------------------------------------------- /assets/images/functions/andThen.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/andThen.tex -------------------------------------------------------------------------------- /assets/images/functions/appended.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/appended.tex -------------------------------------------------------------------------------- /assets/images/functions/appendedAll.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/appendedAll.tex -------------------------------------------------------------------------------- /assets/images/functions/chain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/chain.tex -------------------------------------------------------------------------------- /assets/images/functions/collect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/collect.tex -------------------------------------------------------------------------------- /assets/images/functions/collectFirst.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/collectFirst.2.tex -------------------------------------------------------------------------------- /assets/images/functions/collectFirst.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/collectFirst.tex -------------------------------------------------------------------------------- /assets/images/functions/combinations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/combinations.tex -------------------------------------------------------------------------------- /assets/images/functions/compose.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/compose.tex -------------------------------------------------------------------------------- /assets/images/functions/concat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/concat.tex -------------------------------------------------------------------------------- /assets/images/functions/cond.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/cond.2.tex -------------------------------------------------------------------------------- /assets/images/functions/cond.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/cond.tex -------------------------------------------------------------------------------- /assets/images/functions/condOpt.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/condOpt.2.tex -------------------------------------------------------------------------------- /assets/images/functions/condOpt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/condOpt.tex -------------------------------------------------------------------------------- /assets/images/functions/const.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/const.tex -------------------------------------------------------------------------------- /assets/images/functions/contains.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/contains.2.tex -------------------------------------------------------------------------------- /assets/images/functions/contains.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/contains.tex -------------------------------------------------------------------------------- /assets/images/functions/containsSlice.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/containsSlice.2.tex -------------------------------------------------------------------------------- /assets/images/functions/containsSlice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/containsSlice.tex -------------------------------------------------------------------------------- /assets/images/functions/copyToArray.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/copyToArray.2.tex -------------------------------------------------------------------------------- /assets/images/functions/copyToArray.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/copyToArray.3.tex -------------------------------------------------------------------------------- /assets/images/functions/copyToArray.4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/copyToArray.4.tex -------------------------------------------------------------------------------- /assets/images/functions/copyToArray.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/copyToArray.tex -------------------------------------------------------------------------------- /assets/images/functions/corresponds.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/corresponds.2.tex -------------------------------------------------------------------------------- /assets/images/functions/corresponds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/corresponds.tex -------------------------------------------------------------------------------- /assets/images/functions/count.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/count.tex -------------------------------------------------------------------------------- /assets/images/functions/curried.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/curried.tex -------------------------------------------------------------------------------- /assets/images/functions/diff.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/diff.tex -------------------------------------------------------------------------------- /assets/images/functions/distinct.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/distinct.tex -------------------------------------------------------------------------------- /assets/images/functions/distinctBy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/distinctBy.tex -------------------------------------------------------------------------------- /assets/images/functions/drop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/drop.tex -------------------------------------------------------------------------------- /assets/images/functions/dropRight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/dropRight.tex -------------------------------------------------------------------------------- /assets/images/functions/dropWhile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/dropWhile.tex -------------------------------------------------------------------------------- /assets/images/functions/empty_collections.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/empty_collections.tex -------------------------------------------------------------------------------- /assets/images/functions/endsWith.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/endsWith.2.tex -------------------------------------------------------------------------------- /assets/images/functions/endsWith.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/endsWith.tex -------------------------------------------------------------------------------- /assets/images/functions/exists.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/exists.2.tex -------------------------------------------------------------------------------- /assets/images/functions/exists.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/exists.tex -------------------------------------------------------------------------------- /assets/images/functions/fill.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/fill.tex -------------------------------------------------------------------------------- /assets/images/functions/filter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/filter.tex -------------------------------------------------------------------------------- /assets/images/functions/filterKeys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/filterKeys.tex -------------------------------------------------------------------------------- /assets/images/functions/filterNot.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/filterNot.tex -------------------------------------------------------------------------------- /assets/images/functions/find.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/find.2.tex -------------------------------------------------------------------------------- /assets/images/functions/find.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/find.tex -------------------------------------------------------------------------------- /assets/images/functions/findLast.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/findLast.2.tex -------------------------------------------------------------------------------- /assets/images/functions/findLast.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/findLast.tex -------------------------------------------------------------------------------- /assets/images/functions/flatMap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/flatMap.tex -------------------------------------------------------------------------------- /assets/images/functions/flatten.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/flatten.tex -------------------------------------------------------------------------------- /assets/images/functions/fold.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/fold.tex -------------------------------------------------------------------------------- /assets/images/functions/foldLeft.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/foldLeft.2.tex -------------------------------------------------------------------------------- /assets/images/functions/foldLeft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/foldLeft.tex -------------------------------------------------------------------------------- /assets/images/functions/foldRight.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/foldRight.2.tex -------------------------------------------------------------------------------- /assets/images/functions/foldRight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/foldRight.tex -------------------------------------------------------------------------------- /assets/images/functions/forall.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/forall.2.tex -------------------------------------------------------------------------------- /assets/images/functions/forall.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/forall.tex -------------------------------------------------------------------------------- /assets/images/functions/foreach.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/foreach.tex -------------------------------------------------------------------------------- /assets/images/functions/fromFunction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/fromFunction.tex -------------------------------------------------------------------------------- /assets/images/functions/getOrElse_Map.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/getOrElse_Map.2.tex -------------------------------------------------------------------------------- /assets/images/functions/getOrElse_Map.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/getOrElse_Map.tex -------------------------------------------------------------------------------- /assets/images/functions/getOrElse_Option.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/getOrElse_Option.tex -------------------------------------------------------------------------------- /assets/images/functions/groupBy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/groupBy.tex -------------------------------------------------------------------------------- /assets/images/functions/groupMap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/groupMap.tex -------------------------------------------------------------------------------- /assets/images/functions/groupMapReduce.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/groupMapReduce.tex -------------------------------------------------------------------------------- /assets/images/functions/grouped.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/grouped.tex -------------------------------------------------------------------------------- /assets/images/functions/head.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/head.2.tex -------------------------------------------------------------------------------- /assets/images/functions/head.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/head.tex -------------------------------------------------------------------------------- /assets/images/functions/headOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/headOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/headOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/headOption.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOf.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOf.2.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOf.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOf.3.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOf.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOfSlice.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOfSlice.2.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOfSlice.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOfSlice.3.tex -------------------------------------------------------------------------------- /assets/images/functions/indexOfSlice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexOfSlice.tex -------------------------------------------------------------------------------- /assets/images/functions/indexWhere.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexWhere.2.tex -------------------------------------------------------------------------------- /assets/images/functions/indexWhere.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexWhere.3.tex -------------------------------------------------------------------------------- /assets/images/functions/indexWhere.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indexWhere.tex -------------------------------------------------------------------------------- /assets/images/functions/indices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/indices.tex -------------------------------------------------------------------------------- /assets/images/functions/init.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/init.2.tex -------------------------------------------------------------------------------- /assets/images/functions/init.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/init.tex -------------------------------------------------------------------------------- /assets/images/functions/inits.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/inits.tex -------------------------------------------------------------------------------- /assets/images/functions/intersect.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/intersect.tex -------------------------------------------------------------------------------- /assets/images/functions/isDefinedAt_Map.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/isDefinedAt_Map.tex -------------------------------------------------------------------------------- /assets/images/functions/isDefinedAt_Seq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/isDefinedAt_Seq.tex -------------------------------------------------------------------------------- /assets/images/functions/isEmpty.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/isEmpty.2.tex -------------------------------------------------------------------------------- /assets/images/functions/isEmpty.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/isEmpty.tex -------------------------------------------------------------------------------- /assets/images/functions/keys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/keys.tex -------------------------------------------------------------------------------- /assets/images/functions/last.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/last.2.tex -------------------------------------------------------------------------------- /assets/images/functions/last.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/last.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexOf.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexOf.2.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexOf.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexOf.3.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexOf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexOf.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexOfSlice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexOfSlice.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexWhere.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexWhere.2.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexWhere.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexWhere.3.tex -------------------------------------------------------------------------------- /assets/images/functions/lastIndexWhere.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastIndexWhere.tex -------------------------------------------------------------------------------- /assets/images/functions/lastOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/lastOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lastOption.tex -------------------------------------------------------------------------------- /assets/images/functions/length.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/length.tex -------------------------------------------------------------------------------- /assets/images/functions/lift.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lift.2.tex -------------------------------------------------------------------------------- /assets/images/functions/lift.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/lift.tex -------------------------------------------------------------------------------- /assets/images/functions/map.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/map.tex -------------------------------------------------------------------------------- /assets/images/functions/mapConserve.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/mapConserve.2.tex -------------------------------------------------------------------------------- /assets/images/functions/mapConserve.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/mapConserve.tex -------------------------------------------------------------------------------- /assets/images/functions/mapValues.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/mapValues.tex -------------------------------------------------------------------------------- /assets/images/functions/max.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/max.2.tex -------------------------------------------------------------------------------- /assets/images/functions/max.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/max.tex -------------------------------------------------------------------------------- /assets/images/functions/maxBy.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxBy.2.tex -------------------------------------------------------------------------------- /assets/images/functions/maxBy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxBy.tex -------------------------------------------------------------------------------- /assets/images/functions/maxByOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxByOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/maxByOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxByOption.tex -------------------------------------------------------------------------------- /assets/images/functions/maxOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/maxOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/maxOption.tex -------------------------------------------------------------------------------- /assets/images/functions/min.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/min.2.tex -------------------------------------------------------------------------------- /assets/images/functions/min.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/min.tex -------------------------------------------------------------------------------- /assets/images/functions/minBy.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minBy.2.tex -------------------------------------------------------------------------------- /assets/images/functions/minBy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minBy.tex -------------------------------------------------------------------------------- /assets/images/functions/minByOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minByOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/minByOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minByOption.tex -------------------------------------------------------------------------------- /assets/images/functions/minOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/minOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/minOption.tex -------------------------------------------------------------------------------- /assets/images/functions/mkString.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/mkString.tex -------------------------------------------------------------------------------- /assets/images/functions/nonEmpty.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/nonEmpty.2.tex -------------------------------------------------------------------------------- /assets/images/functions/nonEmpty.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/nonEmpty.tex -------------------------------------------------------------------------------- /assets/images/functions/orElse.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/orElse.2.tex -------------------------------------------------------------------------------- /assets/images/functions/orElse.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/orElse.3.tex -------------------------------------------------------------------------------- /assets/images/functions/orElse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/orElse.tex -------------------------------------------------------------------------------- /assets/images/functions/padTo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/padTo.tex -------------------------------------------------------------------------------- /assets/images/functions/partition.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/partition.tex -------------------------------------------------------------------------------- /assets/images/functions/partitionMap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/partitionMap.tex -------------------------------------------------------------------------------- /assets/images/functions/patch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/patch.tex -------------------------------------------------------------------------------- /assets/images/functions/permutations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/permutations.tex -------------------------------------------------------------------------------- /assets/images/functions/prefixLength.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/prefixLength.tex -------------------------------------------------------------------------------- /assets/images/functions/prepended.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/prepended.tex -------------------------------------------------------------------------------- /assets/images/functions/prependedAll.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/prependedAll.tex -------------------------------------------------------------------------------- /assets/images/functions/product.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/product.2.tex -------------------------------------------------------------------------------- /assets/images/functions/product.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/product.tex -------------------------------------------------------------------------------- /assets/images/functions/range.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/range.2.tex -------------------------------------------------------------------------------- /assets/images/functions/range.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/range.tex -------------------------------------------------------------------------------- /assets/images/functions/reduce.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduce.2.tex -------------------------------------------------------------------------------- /assets/images/functions/reduce.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduce.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceLeft.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceLeft.2.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceLeft.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceLeft.3.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceLeft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceLeft.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceLeftOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceLeftOption.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceOption.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceOption.2.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceOption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceOption.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceRight.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceRight.2.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceRight.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceRight.3.tex -------------------------------------------------------------------------------- /assets/images/functions/reduceRight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reduceRight.tex -------------------------------------------------------------------------------- /assets/images/functions/removed.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/removed.tex -------------------------------------------------------------------------------- /assets/images/functions/reverse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reverse.tex -------------------------------------------------------------------------------- /assets/images/functions/reverseMap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/reverseMap.tex -------------------------------------------------------------------------------- /assets/images/functions/runWith.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/runWith.2.tex -------------------------------------------------------------------------------- /assets/images/functions/runWith.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/runWith.tex -------------------------------------------------------------------------------- /assets/images/functions/sameElements.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sameElements.2.tex -------------------------------------------------------------------------------- /assets/images/functions/sameElements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sameElements.tex -------------------------------------------------------------------------------- /assets/images/functions/scanLeft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/scanLeft.tex -------------------------------------------------------------------------------- /assets/images/functions/scanRight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/scanRight.tex -------------------------------------------------------------------------------- /assets/images/functions/search.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/search.2.tex -------------------------------------------------------------------------------- /assets/images/functions/search.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/search.3.tex -------------------------------------------------------------------------------- /assets/images/functions/search.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/search.tex -------------------------------------------------------------------------------- /assets/images/functions/segmentLength.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/segmentLength.tex -------------------------------------------------------------------------------- /assets/images/functions/size.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/size.tex -------------------------------------------------------------------------------- /assets/images/functions/slice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/slice.tex -------------------------------------------------------------------------------- /assets/images/functions/sliding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sliding.tex -------------------------------------------------------------------------------- /assets/images/functions/sortBy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sortBy.tex -------------------------------------------------------------------------------- /assets/images/functions/sortWith.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sortWith.tex -------------------------------------------------------------------------------- /assets/images/functions/sorted.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sorted.tex -------------------------------------------------------------------------------- /assets/images/functions/span.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/span.tex -------------------------------------------------------------------------------- /assets/images/functions/splitAt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/splitAt.tex -------------------------------------------------------------------------------- /assets/images/functions/startsWith.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/startsWith.2.tex -------------------------------------------------------------------------------- /assets/images/functions/startsWith.3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/startsWith.3.tex -------------------------------------------------------------------------------- /assets/images/functions/startsWith.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/startsWith.tex -------------------------------------------------------------------------------- /assets/images/functions/sum.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sum.2.tex -------------------------------------------------------------------------------- /assets/images/functions/sum.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/sum.tex -------------------------------------------------------------------------------- /assets/images/functions/tabulate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/tabulate.tex -------------------------------------------------------------------------------- /assets/images/functions/tail.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/tail.2.tex -------------------------------------------------------------------------------- /assets/images/functions/tail.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/tail.tex -------------------------------------------------------------------------------- /assets/images/functions/tails.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/tails.tex -------------------------------------------------------------------------------- /assets/images/functions/take.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/take.tex -------------------------------------------------------------------------------- /assets/images/functions/takeRight.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/takeRight.tex -------------------------------------------------------------------------------- /assets/images/functions/takeWhile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/takeWhile.tex -------------------------------------------------------------------------------- /assets/images/functions/transpose.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/transpose.2.tex -------------------------------------------------------------------------------- /assets/images/functions/transpose.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/transpose.tex -------------------------------------------------------------------------------- /assets/images/functions/tupled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/tupled.tex -------------------------------------------------------------------------------- /assets/images/functions/uncurried.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/uncurried.tex -------------------------------------------------------------------------------- /assets/images/functions/unfold.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/unfold.tex -------------------------------------------------------------------------------- /assets/images/functions/union.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/union.tex -------------------------------------------------------------------------------- /assets/images/functions/unlift.2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/unlift.2.tex -------------------------------------------------------------------------------- /assets/images/functions/unlift.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/unlift.tex -------------------------------------------------------------------------------- /assets/images/functions/untupled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/untupled.tex -------------------------------------------------------------------------------- /assets/images/functions/unzip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/unzip.tex -------------------------------------------------------------------------------- /assets/images/functions/unzip3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/unzip3.tex -------------------------------------------------------------------------------- /assets/images/functions/updated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/updated.tex -------------------------------------------------------------------------------- /assets/images/functions/values.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/values.tex -------------------------------------------------------------------------------- /assets/images/functions/withDefault.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/withDefault.tex -------------------------------------------------------------------------------- /assets/images/functions/withDefaultValue.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/withDefaultValue.tex -------------------------------------------------------------------------------- /assets/images/functions/zip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/zip.tex -------------------------------------------------------------------------------- /assets/images/functions/zipAll.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/zipAll.tex -------------------------------------------------------------------------------- /assets/images/functions/zipWithIndex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/images/functions/zipWithIndex.tex -------------------------------------------------------------------------------- /assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/assets/scss/main.scss -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/config.toml -------------------------------------------------------------------------------- /content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/_index.md -------------------------------------------------------------------------------- /content/en/contributors.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: contributors 3 | --- 4 | 5 | lkjlk 6 | -------------------------------------------------------------------------------- /content/en/functions/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/aggregate.md -------------------------------------------------------------------------------- /content/en/functions/andThen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/andThen.md -------------------------------------------------------------------------------- /content/en/functions/appended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/appended.md -------------------------------------------------------------------------------- /content/en/functions/appendedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/appendedAll.md -------------------------------------------------------------------------------- /content/en/functions/chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/chain.md -------------------------------------------------------------------------------- /content/en/functions/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/collect.md -------------------------------------------------------------------------------- /content/en/functions/collectFirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/collectFirst.md -------------------------------------------------------------------------------- /content/en/functions/combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/combinations.md -------------------------------------------------------------------------------- /content/en/functions/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/compose.md -------------------------------------------------------------------------------- /content/en/functions/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/concat.md -------------------------------------------------------------------------------- /content/en/functions/cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/cond.md -------------------------------------------------------------------------------- /content/en/functions/condOpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/condOpt.md -------------------------------------------------------------------------------- /content/en/functions/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/const.md -------------------------------------------------------------------------------- /content/en/functions/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/contains.md -------------------------------------------------------------------------------- /content/en/functions/containsSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/containsSlice.md -------------------------------------------------------------------------------- /content/en/functions/copyToArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/copyToArray.md -------------------------------------------------------------------------------- /content/en/functions/corresponds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/corresponds.md -------------------------------------------------------------------------------- /content/en/functions/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/count.md -------------------------------------------------------------------------------- /content/en/functions/curried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/curried.md -------------------------------------------------------------------------------- /content/en/functions/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/diff.md -------------------------------------------------------------------------------- /content/en/functions/distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/distinct.md -------------------------------------------------------------------------------- /content/en/functions/distinctBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/distinctBy.md -------------------------------------------------------------------------------- /content/en/functions/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/drop.md -------------------------------------------------------------------------------- /content/en/functions/dropRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/dropRight.md -------------------------------------------------------------------------------- /content/en/functions/dropWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/dropWhile.md -------------------------------------------------------------------------------- /content/en/functions/empty_collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/empty_collections.md -------------------------------------------------------------------------------- /content/en/functions/endsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/endsWith.md -------------------------------------------------------------------------------- /content/en/functions/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/exists.md -------------------------------------------------------------------------------- /content/en/functions/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/fill.md -------------------------------------------------------------------------------- /content/en/functions/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/filter.md -------------------------------------------------------------------------------- /content/en/functions/filterKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/filterKeys.md -------------------------------------------------------------------------------- /content/en/functions/filterNot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/filterNot.md -------------------------------------------------------------------------------- /content/en/functions/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/find.md -------------------------------------------------------------------------------- /content/en/functions/findLast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/findLast.md -------------------------------------------------------------------------------- /content/en/functions/flatMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/flatMap.md -------------------------------------------------------------------------------- /content/en/functions/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/flatten.md -------------------------------------------------------------------------------- /content/en/functions/fold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/fold.md -------------------------------------------------------------------------------- /content/en/functions/foldLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/foldLeft.md -------------------------------------------------------------------------------- /content/en/functions/foldRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/foldRight.md -------------------------------------------------------------------------------- /content/en/functions/forall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/forall.md -------------------------------------------------------------------------------- /content/en/functions/foreach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/foreach.md -------------------------------------------------------------------------------- /content/en/functions/fromFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/fromFunction.md -------------------------------------------------------------------------------- /content/en/functions/getOrElse_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/getOrElse_Map.md -------------------------------------------------------------------------------- /content/en/functions/getOrElse_Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/getOrElse_Option.md -------------------------------------------------------------------------------- /content/en/functions/groupBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/groupBy.md -------------------------------------------------------------------------------- /content/en/functions/groupMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/groupMap.md -------------------------------------------------------------------------------- /content/en/functions/groupMapReduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/groupMapReduce.md -------------------------------------------------------------------------------- /content/en/functions/grouped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/grouped.md -------------------------------------------------------------------------------- /content/en/functions/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/head.md -------------------------------------------------------------------------------- /content/en/functions/headOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/headOption.md -------------------------------------------------------------------------------- /content/en/functions/indexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/indexOf.md -------------------------------------------------------------------------------- /content/en/functions/indexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/indexOfSlice.md -------------------------------------------------------------------------------- /content/en/functions/indexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/indexWhere.md -------------------------------------------------------------------------------- /content/en/functions/indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/indices.md -------------------------------------------------------------------------------- /content/en/functions/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/init.md -------------------------------------------------------------------------------- /content/en/functions/inits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/inits.md -------------------------------------------------------------------------------- /content/en/functions/intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/intersect.md -------------------------------------------------------------------------------- /content/en/functions/isDefinedAt_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/isDefinedAt_Map.md -------------------------------------------------------------------------------- /content/en/functions/isDefinedAt_Seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/isDefinedAt_Seq.md -------------------------------------------------------------------------------- /content/en/functions/isEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/isEmpty.md -------------------------------------------------------------------------------- /content/en/functions/isTraversableAgain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/isTraversableAgain.md -------------------------------------------------------------------------------- /content/en/functions/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/keys.md -------------------------------------------------------------------------------- /content/en/functions/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/last.md -------------------------------------------------------------------------------- /content/en/functions/lastIndexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/lastIndexOf.md -------------------------------------------------------------------------------- /content/en/functions/lastIndexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/lastIndexOfSlice.md -------------------------------------------------------------------------------- /content/en/functions/lastIndexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/lastIndexWhere.md -------------------------------------------------------------------------------- /content/en/functions/lastOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/lastOption.md -------------------------------------------------------------------------------- /content/en/functions/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/length.md -------------------------------------------------------------------------------- /content/en/functions/lift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/lift.md -------------------------------------------------------------------------------- /content/en/functions/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/map.md -------------------------------------------------------------------------------- /content/en/functions/mapConserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/mapConserve.md -------------------------------------------------------------------------------- /content/en/functions/mapValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/mapValues.md -------------------------------------------------------------------------------- /content/en/functions/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/max.md -------------------------------------------------------------------------------- /content/en/functions/maxBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/maxBy.md -------------------------------------------------------------------------------- /content/en/functions/maxByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/maxByOption.md -------------------------------------------------------------------------------- /content/en/functions/maxOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/maxOption.md -------------------------------------------------------------------------------- /content/en/functions/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/min.md -------------------------------------------------------------------------------- /content/en/functions/minBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/minBy.md -------------------------------------------------------------------------------- /content/en/functions/minByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/minByOption.md -------------------------------------------------------------------------------- /content/en/functions/minOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/minOption.md -------------------------------------------------------------------------------- /content/en/functions/mkString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/mkString.md -------------------------------------------------------------------------------- /content/en/functions/nonEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/nonEmpty.md -------------------------------------------------------------------------------- /content/en/functions/orElse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/orElse.md -------------------------------------------------------------------------------- /content/en/functions/padTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/padTo.md -------------------------------------------------------------------------------- /content/en/functions/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/partition.md -------------------------------------------------------------------------------- /content/en/functions/partitionMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/partitionMap.md -------------------------------------------------------------------------------- /content/en/functions/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/patch.md -------------------------------------------------------------------------------- /content/en/functions/permutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/permutations.md -------------------------------------------------------------------------------- /content/en/functions/prefixLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/prefixLength.md -------------------------------------------------------------------------------- /content/en/functions/prepended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/prepended.md -------------------------------------------------------------------------------- /content/en/functions/prependedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/prependedAll.md -------------------------------------------------------------------------------- /content/en/functions/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/product.md -------------------------------------------------------------------------------- /content/en/functions/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/range.md -------------------------------------------------------------------------------- /content/en/functions/reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduce.md -------------------------------------------------------------------------------- /content/en/functions/reduceLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduceLeft.md -------------------------------------------------------------------------------- /content/en/functions/reduceLeftOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduceLeftOption.md -------------------------------------------------------------------------------- /content/en/functions/reduceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduceOption.md -------------------------------------------------------------------------------- /content/en/functions/reduceRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduceRight.md -------------------------------------------------------------------------------- /content/en/functions/reduceRightOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reduceRightOption.md -------------------------------------------------------------------------------- /content/en/functions/removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/removed.md -------------------------------------------------------------------------------- /content/en/functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reverse.md -------------------------------------------------------------------------------- /content/en/functions/reverseMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/reverseMap.md -------------------------------------------------------------------------------- /content/en/functions/runWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/runWith.md -------------------------------------------------------------------------------- /content/en/functions/sameElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sameElements.md -------------------------------------------------------------------------------- /content/en/functions/scanLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/scanLeft.md -------------------------------------------------------------------------------- /content/en/functions/scanRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/scanRight.md -------------------------------------------------------------------------------- /content/en/functions/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/search.md -------------------------------------------------------------------------------- /content/en/functions/segmentLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/segmentLength.md -------------------------------------------------------------------------------- /content/en/functions/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/size.md -------------------------------------------------------------------------------- /content/en/functions/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/slice.md -------------------------------------------------------------------------------- /content/en/functions/sliding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sliding.md -------------------------------------------------------------------------------- /content/en/functions/sortBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sortBy.md -------------------------------------------------------------------------------- /content/en/functions/sortWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sortWith.md -------------------------------------------------------------------------------- /content/en/functions/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sorted.md -------------------------------------------------------------------------------- /content/en/functions/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/span.md -------------------------------------------------------------------------------- /content/en/functions/splitAt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/splitAt.md -------------------------------------------------------------------------------- /content/en/functions/startsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/startsWith.md -------------------------------------------------------------------------------- /content/en/functions/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/sum.md -------------------------------------------------------------------------------- /content/en/functions/tabulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/tabulate.md -------------------------------------------------------------------------------- /content/en/functions/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/tail.md -------------------------------------------------------------------------------- /content/en/functions/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/tails.md -------------------------------------------------------------------------------- /content/en/functions/take.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/take.md -------------------------------------------------------------------------------- /content/en/functions/takeRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/takeRight.md -------------------------------------------------------------------------------- /content/en/functions/takeWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/takeWhile.md -------------------------------------------------------------------------------- /content/en/functions/transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/transpose.md -------------------------------------------------------------------------------- /content/en/functions/tupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/tupled.md -------------------------------------------------------------------------------- /content/en/functions/uncurried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/uncurried.md -------------------------------------------------------------------------------- /content/en/functions/unfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/unfold.md -------------------------------------------------------------------------------- /content/en/functions/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/union.md -------------------------------------------------------------------------------- /content/en/functions/unlift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/unlift.md -------------------------------------------------------------------------------- /content/en/functions/untupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/untupled.md -------------------------------------------------------------------------------- /content/en/functions/unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/unzip.md -------------------------------------------------------------------------------- /content/en/functions/unzip3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/unzip3.md -------------------------------------------------------------------------------- /content/en/functions/updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/updated.md -------------------------------------------------------------------------------- /content/en/functions/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/values.md -------------------------------------------------------------------------------- /content/en/functions/withDefault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/withDefault.md -------------------------------------------------------------------------------- /content/en/functions/withDefaultValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/withDefaultValue.md -------------------------------------------------------------------------------- /content/en/functions/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/zip.md -------------------------------------------------------------------------------- /content/en/functions/zipAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/zipAll.md -------------------------------------------------------------------------------- /content/en/functions/zipWithIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/en/functions/zipWithIndex.md -------------------------------------------------------------------------------- /content/es/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/_index.md -------------------------------------------------------------------------------- /content/es/functions/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/aggregate.md -------------------------------------------------------------------------------- /content/es/functions/andThen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/andThen.md -------------------------------------------------------------------------------- /content/es/functions/appended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/appended.md -------------------------------------------------------------------------------- /content/es/functions/appendedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/appendedAll.md -------------------------------------------------------------------------------- /content/es/functions/chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/chain.md -------------------------------------------------------------------------------- /content/es/functions/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/collect.md -------------------------------------------------------------------------------- /content/es/functions/collectFirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/collectFirst.md -------------------------------------------------------------------------------- /content/es/functions/combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/combinations.md -------------------------------------------------------------------------------- /content/es/functions/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/compose.md -------------------------------------------------------------------------------- /content/es/functions/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/concat.md -------------------------------------------------------------------------------- /content/es/functions/cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/cond.md -------------------------------------------------------------------------------- /content/es/functions/condOpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/condOpt.md -------------------------------------------------------------------------------- /content/es/functions/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/const.md -------------------------------------------------------------------------------- /content/es/functions/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/contains.md -------------------------------------------------------------------------------- /content/es/functions/containsSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/containsSlice.md -------------------------------------------------------------------------------- /content/es/functions/copyToArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/copyToArray.md -------------------------------------------------------------------------------- /content/es/functions/corresponds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/corresponds.md -------------------------------------------------------------------------------- /content/es/functions/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/count.md -------------------------------------------------------------------------------- /content/es/functions/curried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/curried.md -------------------------------------------------------------------------------- /content/es/functions/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/diff.md -------------------------------------------------------------------------------- /content/es/functions/distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/distinct.md -------------------------------------------------------------------------------- /content/es/functions/distinctBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/distinctBy.md -------------------------------------------------------------------------------- /content/es/functions/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/drop.md -------------------------------------------------------------------------------- /content/es/functions/dropRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/dropRight.md -------------------------------------------------------------------------------- /content/es/functions/dropWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/dropWhile.md -------------------------------------------------------------------------------- /content/es/functions/empty_collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/empty_collections.md -------------------------------------------------------------------------------- /content/es/functions/endsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/endsWith.md -------------------------------------------------------------------------------- /content/es/functions/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/exists.md -------------------------------------------------------------------------------- /content/es/functions/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/fill.md -------------------------------------------------------------------------------- /content/es/functions/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/filter.md -------------------------------------------------------------------------------- /content/es/functions/filterKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/filterKeys.md -------------------------------------------------------------------------------- /content/es/functions/filterNot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/filterNot.md -------------------------------------------------------------------------------- /content/es/functions/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/find.md -------------------------------------------------------------------------------- /content/es/functions/findLast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/findLast.md -------------------------------------------------------------------------------- /content/es/functions/flatMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/flatMap.md -------------------------------------------------------------------------------- /content/es/functions/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/flatten.md -------------------------------------------------------------------------------- /content/es/functions/fold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/fold.md -------------------------------------------------------------------------------- /content/es/functions/foldLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/foldLeft.md -------------------------------------------------------------------------------- /content/es/functions/foldRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/foldRight.md -------------------------------------------------------------------------------- /content/es/functions/forall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/forall.md -------------------------------------------------------------------------------- /content/es/functions/foreach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/foreach.md -------------------------------------------------------------------------------- /content/es/functions/fromFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/fromFunction.md -------------------------------------------------------------------------------- /content/es/functions/getOrElse_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/getOrElse_Map.md -------------------------------------------------------------------------------- /content/es/functions/getOrElse_Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/getOrElse_Option.md -------------------------------------------------------------------------------- /content/es/functions/groupBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/groupBy.md -------------------------------------------------------------------------------- /content/es/functions/groupMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/groupMap.md -------------------------------------------------------------------------------- /content/es/functions/groupMapReduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/groupMapReduce.md -------------------------------------------------------------------------------- /content/es/functions/grouped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/grouped.md -------------------------------------------------------------------------------- /content/es/functions/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/head.md -------------------------------------------------------------------------------- /content/es/functions/headOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/headOption.md -------------------------------------------------------------------------------- /content/es/functions/indexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/indexOf.md -------------------------------------------------------------------------------- /content/es/functions/indexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/indexOfSlice.md -------------------------------------------------------------------------------- /content/es/functions/indexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/indexWhere.md -------------------------------------------------------------------------------- /content/es/functions/indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/indices.md -------------------------------------------------------------------------------- /content/es/functions/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/init.md -------------------------------------------------------------------------------- /content/es/functions/inits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/inits.md -------------------------------------------------------------------------------- /content/es/functions/intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/intersect.md -------------------------------------------------------------------------------- /content/es/functions/isDefinedAt_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/isDefinedAt_Map.md -------------------------------------------------------------------------------- /content/es/functions/isDefinedAt_Seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/isDefinedAt_Seq.md -------------------------------------------------------------------------------- /content/es/functions/isEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/isEmpty.md -------------------------------------------------------------------------------- /content/es/functions/isTraversableAgain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/isTraversableAgain.md -------------------------------------------------------------------------------- /content/es/functions/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/keys.md -------------------------------------------------------------------------------- /content/es/functions/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/last.md -------------------------------------------------------------------------------- /content/es/functions/lastIndexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/lastIndexOf.md -------------------------------------------------------------------------------- /content/es/functions/lastIndexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/lastIndexOfSlice.md -------------------------------------------------------------------------------- /content/es/functions/lastIndexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/lastIndexWhere.md -------------------------------------------------------------------------------- /content/es/functions/lastOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/lastOption.md -------------------------------------------------------------------------------- /content/es/functions/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/length.md -------------------------------------------------------------------------------- /content/es/functions/lift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/lift.md -------------------------------------------------------------------------------- /content/es/functions/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/map.md -------------------------------------------------------------------------------- /content/es/functions/mapConserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/mapConserve.md -------------------------------------------------------------------------------- /content/es/functions/mapValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/mapValues.md -------------------------------------------------------------------------------- /content/es/functions/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/max.md -------------------------------------------------------------------------------- /content/es/functions/maxBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/maxBy.md -------------------------------------------------------------------------------- /content/es/functions/maxByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/maxByOption.md -------------------------------------------------------------------------------- /content/es/functions/maxOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/maxOption.md -------------------------------------------------------------------------------- /content/es/functions/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/min.md -------------------------------------------------------------------------------- /content/es/functions/minBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/minBy.md -------------------------------------------------------------------------------- /content/es/functions/minByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/minByOption.md -------------------------------------------------------------------------------- /content/es/functions/minOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/minOption.md -------------------------------------------------------------------------------- /content/es/functions/mkString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/mkString.md -------------------------------------------------------------------------------- /content/es/functions/nonEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/nonEmpty.md -------------------------------------------------------------------------------- /content/es/functions/orElse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/orElse.md -------------------------------------------------------------------------------- /content/es/functions/padTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/padTo.md -------------------------------------------------------------------------------- /content/es/functions/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/partition.md -------------------------------------------------------------------------------- /content/es/functions/partitionMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/partitionMap.md -------------------------------------------------------------------------------- /content/es/functions/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/patch.md -------------------------------------------------------------------------------- /content/es/functions/permutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/permutations.md -------------------------------------------------------------------------------- /content/es/functions/prefixLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/prefixLength.md -------------------------------------------------------------------------------- /content/es/functions/prepended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/prepended.md -------------------------------------------------------------------------------- /content/es/functions/prependedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/prependedAll.md -------------------------------------------------------------------------------- /content/es/functions/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/product.md -------------------------------------------------------------------------------- /content/es/functions/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/range.md -------------------------------------------------------------------------------- /content/es/functions/reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduce.md -------------------------------------------------------------------------------- /content/es/functions/reduceLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduceLeft.md -------------------------------------------------------------------------------- /content/es/functions/reduceLeftOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduceLeftOption.md -------------------------------------------------------------------------------- /content/es/functions/reduceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduceOption.md -------------------------------------------------------------------------------- /content/es/functions/reduceRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduceRight.md -------------------------------------------------------------------------------- /content/es/functions/reduceRightOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reduceRightOption.md -------------------------------------------------------------------------------- /content/es/functions/removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/removed.md -------------------------------------------------------------------------------- /content/es/functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reverse.md -------------------------------------------------------------------------------- /content/es/functions/reverseMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/reverseMap.md -------------------------------------------------------------------------------- /content/es/functions/runWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/runWith.md -------------------------------------------------------------------------------- /content/es/functions/sameElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sameElements.md -------------------------------------------------------------------------------- /content/es/functions/scanLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/scanLeft.md -------------------------------------------------------------------------------- /content/es/functions/scanRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/scanRight.md -------------------------------------------------------------------------------- /content/es/functions/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/search.md -------------------------------------------------------------------------------- /content/es/functions/segmentLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/segmentLength.md -------------------------------------------------------------------------------- /content/es/functions/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/size.md -------------------------------------------------------------------------------- /content/es/functions/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/slice.md -------------------------------------------------------------------------------- /content/es/functions/sliding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sliding.md -------------------------------------------------------------------------------- /content/es/functions/sortBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sortBy.md -------------------------------------------------------------------------------- /content/es/functions/sortWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sortWith.md -------------------------------------------------------------------------------- /content/es/functions/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sorted.md -------------------------------------------------------------------------------- /content/es/functions/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/span.md -------------------------------------------------------------------------------- /content/es/functions/splitAt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/splitAt.md -------------------------------------------------------------------------------- /content/es/functions/startsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/startsWith.md -------------------------------------------------------------------------------- /content/es/functions/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/sum.md -------------------------------------------------------------------------------- /content/es/functions/tabulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/tabulate.md -------------------------------------------------------------------------------- /content/es/functions/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/tail.md -------------------------------------------------------------------------------- /content/es/functions/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/tails.md -------------------------------------------------------------------------------- /content/es/functions/take.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/take.md -------------------------------------------------------------------------------- /content/es/functions/takeRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/takeRight.md -------------------------------------------------------------------------------- /content/es/functions/takeWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/takeWhile.md -------------------------------------------------------------------------------- /content/es/functions/transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/transpose.md -------------------------------------------------------------------------------- /content/es/functions/tupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/tupled.md -------------------------------------------------------------------------------- /content/es/functions/uncurried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/uncurried.md -------------------------------------------------------------------------------- /content/es/functions/unfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/unfold.md -------------------------------------------------------------------------------- /content/es/functions/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/union.md -------------------------------------------------------------------------------- /content/es/functions/unlift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/unlift.md -------------------------------------------------------------------------------- /content/es/functions/untupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/untupled.md -------------------------------------------------------------------------------- /content/es/functions/unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/unzip.md -------------------------------------------------------------------------------- /content/es/functions/unzip3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/unzip3.md -------------------------------------------------------------------------------- /content/es/functions/updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/updated.md -------------------------------------------------------------------------------- /content/es/functions/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/values.md -------------------------------------------------------------------------------- /content/es/functions/withDefault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/withDefault.md -------------------------------------------------------------------------------- /content/es/functions/withDefaultValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/withDefaultValue.md -------------------------------------------------------------------------------- /content/es/functions/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/zip.md -------------------------------------------------------------------------------- /content/es/functions/zipAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/zipAll.md -------------------------------------------------------------------------------- /content/es/functions/zipWithIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/es/functions/zipWithIndex.md -------------------------------------------------------------------------------- /content/ja/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/_index.md -------------------------------------------------------------------------------- /content/ja/functions/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/aggregate.md -------------------------------------------------------------------------------- /content/ja/functions/andThen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/andThen.md -------------------------------------------------------------------------------- /content/ja/functions/appended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/appended.md -------------------------------------------------------------------------------- /content/ja/functions/appendedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/appendedAll.md -------------------------------------------------------------------------------- /content/ja/functions/chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/chain.md -------------------------------------------------------------------------------- /content/ja/functions/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/collect.md -------------------------------------------------------------------------------- /content/ja/functions/collectFirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/collectFirst.md -------------------------------------------------------------------------------- /content/ja/functions/combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/combinations.md -------------------------------------------------------------------------------- /content/ja/functions/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/compose.md -------------------------------------------------------------------------------- /content/ja/functions/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/concat.md -------------------------------------------------------------------------------- /content/ja/functions/cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/cond.md -------------------------------------------------------------------------------- /content/ja/functions/condOpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/condOpt.md -------------------------------------------------------------------------------- /content/ja/functions/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/const.md -------------------------------------------------------------------------------- /content/ja/functions/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/contains.md -------------------------------------------------------------------------------- /content/ja/functions/containsSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/containsSlice.md -------------------------------------------------------------------------------- /content/ja/functions/copyToArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/copyToArray.md -------------------------------------------------------------------------------- /content/ja/functions/corresponds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/corresponds.md -------------------------------------------------------------------------------- /content/ja/functions/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/count.md -------------------------------------------------------------------------------- /content/ja/functions/curried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/curried.md -------------------------------------------------------------------------------- /content/ja/functions/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/diff.md -------------------------------------------------------------------------------- /content/ja/functions/distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/distinct.md -------------------------------------------------------------------------------- /content/ja/functions/distinctBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/distinctBy.md -------------------------------------------------------------------------------- /content/ja/functions/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/drop.md -------------------------------------------------------------------------------- /content/ja/functions/dropRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/dropRight.md -------------------------------------------------------------------------------- /content/ja/functions/dropWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/dropWhile.md -------------------------------------------------------------------------------- /content/ja/functions/empty_collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/empty_collections.md -------------------------------------------------------------------------------- /content/ja/functions/endsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/endsWith.md -------------------------------------------------------------------------------- /content/ja/functions/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/exists.md -------------------------------------------------------------------------------- /content/ja/functions/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/fill.md -------------------------------------------------------------------------------- /content/ja/functions/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/filter.md -------------------------------------------------------------------------------- /content/ja/functions/filterKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/filterKeys.md -------------------------------------------------------------------------------- /content/ja/functions/filterNot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/filterNot.md -------------------------------------------------------------------------------- /content/ja/functions/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/find.md -------------------------------------------------------------------------------- /content/ja/functions/findLast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/findLast.md -------------------------------------------------------------------------------- /content/ja/functions/flatMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/flatMap.md -------------------------------------------------------------------------------- /content/ja/functions/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/flatten.md -------------------------------------------------------------------------------- /content/ja/functions/fold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/fold.md -------------------------------------------------------------------------------- /content/ja/functions/foldLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/foldLeft.md -------------------------------------------------------------------------------- /content/ja/functions/foldRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/foldRight.md -------------------------------------------------------------------------------- /content/ja/functions/forall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/forall.md -------------------------------------------------------------------------------- /content/ja/functions/foreach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/foreach.md -------------------------------------------------------------------------------- /content/ja/functions/fromFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/fromFunction.md -------------------------------------------------------------------------------- /content/ja/functions/getOrElse_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/getOrElse_Map.md -------------------------------------------------------------------------------- /content/ja/functions/getOrElse_Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/getOrElse_Option.md -------------------------------------------------------------------------------- /content/ja/functions/groupBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/groupBy.md -------------------------------------------------------------------------------- /content/ja/functions/groupMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/groupMap.md -------------------------------------------------------------------------------- /content/ja/functions/groupMapReduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/groupMapReduce.md -------------------------------------------------------------------------------- /content/ja/functions/grouped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/grouped.md -------------------------------------------------------------------------------- /content/ja/functions/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/head.md -------------------------------------------------------------------------------- /content/ja/functions/headOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/headOption.md -------------------------------------------------------------------------------- /content/ja/functions/indexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/indexOf.md -------------------------------------------------------------------------------- /content/ja/functions/indexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/indexOfSlice.md -------------------------------------------------------------------------------- /content/ja/functions/indexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/indexWhere.md -------------------------------------------------------------------------------- /content/ja/functions/indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/indices.md -------------------------------------------------------------------------------- /content/ja/functions/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/init.md -------------------------------------------------------------------------------- /content/ja/functions/inits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/inits.md -------------------------------------------------------------------------------- /content/ja/functions/intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/intersect.md -------------------------------------------------------------------------------- /content/ja/functions/isDefinedAt_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/isDefinedAt_Map.md -------------------------------------------------------------------------------- /content/ja/functions/isDefinedAt_Seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/isDefinedAt_Seq.md -------------------------------------------------------------------------------- /content/ja/functions/isEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/isEmpty.md -------------------------------------------------------------------------------- /content/ja/functions/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/keys.md -------------------------------------------------------------------------------- /content/ja/functions/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/last.md -------------------------------------------------------------------------------- /content/ja/functions/lastIndexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/lastIndexOf.md -------------------------------------------------------------------------------- /content/ja/functions/lastIndexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/lastIndexOfSlice.md -------------------------------------------------------------------------------- /content/ja/functions/lastIndexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/lastIndexWhere.md -------------------------------------------------------------------------------- /content/ja/functions/lastOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/lastOption.md -------------------------------------------------------------------------------- /content/ja/functions/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/length.md -------------------------------------------------------------------------------- /content/ja/functions/lift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/lift.md -------------------------------------------------------------------------------- /content/ja/functions/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/map.md -------------------------------------------------------------------------------- /content/ja/functions/mapConserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/mapConserve.md -------------------------------------------------------------------------------- /content/ja/functions/mapValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/mapValues.md -------------------------------------------------------------------------------- /content/ja/functions/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/max.md -------------------------------------------------------------------------------- /content/ja/functions/maxBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/maxBy.md -------------------------------------------------------------------------------- /content/ja/functions/maxByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/maxByOption.md -------------------------------------------------------------------------------- /content/ja/functions/maxOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/maxOption.md -------------------------------------------------------------------------------- /content/ja/functions/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/min.md -------------------------------------------------------------------------------- /content/ja/functions/minBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/minBy.md -------------------------------------------------------------------------------- /content/ja/functions/minByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/minByOption.md -------------------------------------------------------------------------------- /content/ja/functions/minOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/minOption.md -------------------------------------------------------------------------------- /content/ja/functions/mkString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/mkString.md -------------------------------------------------------------------------------- /content/ja/functions/nonEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/nonEmpty.md -------------------------------------------------------------------------------- /content/ja/functions/orElse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/orElse.md -------------------------------------------------------------------------------- /content/ja/functions/padTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/padTo.md -------------------------------------------------------------------------------- /content/ja/functions/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/partition.md -------------------------------------------------------------------------------- /content/ja/functions/partitionMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/partitionMap.md -------------------------------------------------------------------------------- /content/ja/functions/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/patch.md -------------------------------------------------------------------------------- /content/ja/functions/permutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/permutations.md -------------------------------------------------------------------------------- /content/ja/functions/prefixLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/prefixLength.md -------------------------------------------------------------------------------- /content/ja/functions/prepended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/prepended.md -------------------------------------------------------------------------------- /content/ja/functions/prependedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/prependedAll.md -------------------------------------------------------------------------------- /content/ja/functions/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/product.md -------------------------------------------------------------------------------- /content/ja/functions/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/range.md -------------------------------------------------------------------------------- /content/ja/functions/reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduce.md -------------------------------------------------------------------------------- /content/ja/functions/reduceLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduceLeft.md -------------------------------------------------------------------------------- /content/ja/functions/reduceLeftOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduceLeftOption.md -------------------------------------------------------------------------------- /content/ja/functions/reduceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduceOption.md -------------------------------------------------------------------------------- /content/ja/functions/reduceRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduceRight.md -------------------------------------------------------------------------------- /content/ja/functions/reduceRightOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reduceRightOption.md -------------------------------------------------------------------------------- /content/ja/functions/removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/removed.md -------------------------------------------------------------------------------- /content/ja/functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reverse.md -------------------------------------------------------------------------------- /content/ja/functions/reverseMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/reverseMap.md -------------------------------------------------------------------------------- /content/ja/functions/runWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/runWith.md -------------------------------------------------------------------------------- /content/ja/functions/sameElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sameElements.md -------------------------------------------------------------------------------- /content/ja/functions/scanLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/scanLeft.md -------------------------------------------------------------------------------- /content/ja/functions/scanRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/scanRight.md -------------------------------------------------------------------------------- /content/ja/functions/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/search.md -------------------------------------------------------------------------------- /content/ja/functions/segmentLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/segmentLength.md -------------------------------------------------------------------------------- /content/ja/functions/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/size.md -------------------------------------------------------------------------------- /content/ja/functions/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/slice.md -------------------------------------------------------------------------------- /content/ja/functions/sliding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sliding.md -------------------------------------------------------------------------------- /content/ja/functions/sortBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sortBy.md -------------------------------------------------------------------------------- /content/ja/functions/sortWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sortWith.md -------------------------------------------------------------------------------- /content/ja/functions/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sorted.md -------------------------------------------------------------------------------- /content/ja/functions/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/span.md -------------------------------------------------------------------------------- /content/ja/functions/splitAt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/splitAt.md -------------------------------------------------------------------------------- /content/ja/functions/startsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/startsWith.md -------------------------------------------------------------------------------- /content/ja/functions/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/sum.md -------------------------------------------------------------------------------- /content/ja/functions/tabulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/tabulate.md -------------------------------------------------------------------------------- /content/ja/functions/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/tail.md -------------------------------------------------------------------------------- /content/ja/functions/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/tails.md -------------------------------------------------------------------------------- /content/ja/functions/take.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/take.md -------------------------------------------------------------------------------- /content/ja/functions/takeRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/takeRight.md -------------------------------------------------------------------------------- /content/ja/functions/takeWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/takeWhile.md -------------------------------------------------------------------------------- /content/ja/functions/transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/transpose.md -------------------------------------------------------------------------------- /content/ja/functions/tupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/tupled.md -------------------------------------------------------------------------------- /content/ja/functions/uncurried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/uncurried.md -------------------------------------------------------------------------------- /content/ja/functions/unfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/unfold.md -------------------------------------------------------------------------------- /content/ja/functions/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/union.md -------------------------------------------------------------------------------- /content/ja/functions/unlift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/unlift.md -------------------------------------------------------------------------------- /content/ja/functions/untupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/untupled.md -------------------------------------------------------------------------------- /content/ja/functions/unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/unzip.md -------------------------------------------------------------------------------- /content/ja/functions/unzip3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/unzip3.md -------------------------------------------------------------------------------- /content/ja/functions/updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/updated.md -------------------------------------------------------------------------------- /content/ja/functions/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/values.md -------------------------------------------------------------------------------- /content/ja/functions/withDefault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/withDefault.md -------------------------------------------------------------------------------- /content/ja/functions/withDefaultValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/withDefaultValue.md -------------------------------------------------------------------------------- /content/ja/functions/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/zip.md -------------------------------------------------------------------------------- /content/ja/functions/zipAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/zipAll.md -------------------------------------------------------------------------------- /content/ja/functions/zipWithIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/ja/functions/zipWithIndex.md -------------------------------------------------------------------------------- /content/pt/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/_index.md -------------------------------------------------------------------------------- /content/pt/functions/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/aggregate.md -------------------------------------------------------------------------------- /content/pt/functions/andThen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/andThen.md -------------------------------------------------------------------------------- /content/pt/functions/appended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/appended.md -------------------------------------------------------------------------------- /content/pt/functions/appendedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/appendedAll.md -------------------------------------------------------------------------------- /content/pt/functions/chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/chain.md -------------------------------------------------------------------------------- /content/pt/functions/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/collect.md -------------------------------------------------------------------------------- /content/pt/functions/collectFirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/collectFirst.md -------------------------------------------------------------------------------- /content/pt/functions/combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/combinations.md -------------------------------------------------------------------------------- /content/pt/functions/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/compose.md -------------------------------------------------------------------------------- /content/pt/functions/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/concat.md -------------------------------------------------------------------------------- /content/pt/functions/cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/cond.md -------------------------------------------------------------------------------- /content/pt/functions/condOpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/condOpt.md -------------------------------------------------------------------------------- /content/pt/functions/const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/const.md -------------------------------------------------------------------------------- /content/pt/functions/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/contains.md -------------------------------------------------------------------------------- /content/pt/functions/containsSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/containsSlice.md -------------------------------------------------------------------------------- /content/pt/functions/copyToArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/copyToArray.md -------------------------------------------------------------------------------- /content/pt/functions/corresponds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/corresponds.md -------------------------------------------------------------------------------- /content/pt/functions/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/count.md -------------------------------------------------------------------------------- /content/pt/functions/curried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/curried.md -------------------------------------------------------------------------------- /content/pt/functions/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/diff.md -------------------------------------------------------------------------------- /content/pt/functions/distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/distinct.md -------------------------------------------------------------------------------- /content/pt/functions/distinctBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/distinctBy.md -------------------------------------------------------------------------------- /content/pt/functions/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/drop.md -------------------------------------------------------------------------------- /content/pt/functions/dropRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/dropRight.md -------------------------------------------------------------------------------- /content/pt/functions/dropWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/dropWhile.md -------------------------------------------------------------------------------- /content/pt/functions/empty_collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/empty_collections.md -------------------------------------------------------------------------------- /content/pt/functions/endsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/endsWith.md -------------------------------------------------------------------------------- /content/pt/functions/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/exists.md -------------------------------------------------------------------------------- /content/pt/functions/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/fill.md -------------------------------------------------------------------------------- /content/pt/functions/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/filter.md -------------------------------------------------------------------------------- /content/pt/functions/filterKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/filterKeys.md -------------------------------------------------------------------------------- /content/pt/functions/filterNot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/filterNot.md -------------------------------------------------------------------------------- /content/pt/functions/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/find.md -------------------------------------------------------------------------------- /content/pt/functions/findLast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/findLast.md -------------------------------------------------------------------------------- /content/pt/functions/flatMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/flatMap.md -------------------------------------------------------------------------------- /content/pt/functions/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/flatten.md -------------------------------------------------------------------------------- /content/pt/functions/fold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/fold.md -------------------------------------------------------------------------------- /content/pt/functions/foldLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/foldLeft.md -------------------------------------------------------------------------------- /content/pt/functions/foldRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/foldRight.md -------------------------------------------------------------------------------- /content/pt/functions/forall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/forall.md -------------------------------------------------------------------------------- /content/pt/functions/foreach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/foreach.md -------------------------------------------------------------------------------- /content/pt/functions/fromFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/fromFunction.md -------------------------------------------------------------------------------- /content/pt/functions/getOrElse_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/getOrElse_Map.md -------------------------------------------------------------------------------- /content/pt/functions/getOrElse_Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/getOrElse_Option.md -------------------------------------------------------------------------------- /content/pt/functions/groupBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/groupBy.md -------------------------------------------------------------------------------- /content/pt/functions/groupMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/groupMap.md -------------------------------------------------------------------------------- /content/pt/functions/groupMapReduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/groupMapReduce.md -------------------------------------------------------------------------------- /content/pt/functions/grouped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/grouped.md -------------------------------------------------------------------------------- /content/pt/functions/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/head.md -------------------------------------------------------------------------------- /content/pt/functions/headOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/headOption.md -------------------------------------------------------------------------------- /content/pt/functions/indexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/indexOf.md -------------------------------------------------------------------------------- /content/pt/functions/indexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/indexOfSlice.md -------------------------------------------------------------------------------- /content/pt/functions/indexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/indexWhere.md -------------------------------------------------------------------------------- /content/pt/functions/indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/indices.md -------------------------------------------------------------------------------- /content/pt/functions/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/init.md -------------------------------------------------------------------------------- /content/pt/functions/inits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/inits.md -------------------------------------------------------------------------------- /content/pt/functions/intersect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/intersect.md -------------------------------------------------------------------------------- /content/pt/functions/isDefinedAt_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/isDefinedAt_Map.md -------------------------------------------------------------------------------- /content/pt/functions/isDefinedAt_Seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/isDefinedAt_Seq.md -------------------------------------------------------------------------------- /content/pt/functions/isEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/isEmpty.md -------------------------------------------------------------------------------- /content/pt/functions/isTraversableAgain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/isTraversableAgain.md -------------------------------------------------------------------------------- /content/pt/functions/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/keys.md -------------------------------------------------------------------------------- /content/pt/functions/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/last.md -------------------------------------------------------------------------------- /content/pt/functions/lastIndexOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/lastIndexOf.md -------------------------------------------------------------------------------- /content/pt/functions/lastIndexOfSlice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/lastIndexOfSlice.md -------------------------------------------------------------------------------- /content/pt/functions/lastIndexWhere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/lastIndexWhere.md -------------------------------------------------------------------------------- /content/pt/functions/lastOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/lastOption.md -------------------------------------------------------------------------------- /content/pt/functions/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/length.md -------------------------------------------------------------------------------- /content/pt/functions/lift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/lift.md -------------------------------------------------------------------------------- /content/pt/functions/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/map.md -------------------------------------------------------------------------------- /content/pt/functions/mapConserve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/mapConserve.md -------------------------------------------------------------------------------- /content/pt/functions/mapValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/mapValues.md -------------------------------------------------------------------------------- /content/pt/functions/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/max.md -------------------------------------------------------------------------------- /content/pt/functions/maxBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/maxBy.md -------------------------------------------------------------------------------- /content/pt/functions/maxByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/maxByOption.md -------------------------------------------------------------------------------- /content/pt/functions/maxOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/maxOption.md -------------------------------------------------------------------------------- /content/pt/functions/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/min.md -------------------------------------------------------------------------------- /content/pt/functions/minBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/minBy.md -------------------------------------------------------------------------------- /content/pt/functions/minByOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/minByOption.md -------------------------------------------------------------------------------- /content/pt/functions/minOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/minOption.md -------------------------------------------------------------------------------- /content/pt/functions/mkString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/mkString.md -------------------------------------------------------------------------------- /content/pt/functions/nonEmpty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/nonEmpty.md -------------------------------------------------------------------------------- /content/pt/functions/orElse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/orElse.md -------------------------------------------------------------------------------- /content/pt/functions/padTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/padTo.md -------------------------------------------------------------------------------- /content/pt/functions/partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/partition.md -------------------------------------------------------------------------------- /content/pt/functions/partitionMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/partitionMap.md -------------------------------------------------------------------------------- /content/pt/functions/patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/patch.md -------------------------------------------------------------------------------- /content/pt/functions/permutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/permutations.md -------------------------------------------------------------------------------- /content/pt/functions/prefixLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/prefixLength.md -------------------------------------------------------------------------------- /content/pt/functions/prepended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/prepended.md -------------------------------------------------------------------------------- /content/pt/functions/prependedAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/prependedAll.md -------------------------------------------------------------------------------- /content/pt/functions/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/product.md -------------------------------------------------------------------------------- /content/pt/functions/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/range.md -------------------------------------------------------------------------------- /content/pt/functions/reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduce.md -------------------------------------------------------------------------------- /content/pt/functions/reduceLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduceLeft.md -------------------------------------------------------------------------------- /content/pt/functions/reduceLeftOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduceLeftOption.md -------------------------------------------------------------------------------- /content/pt/functions/reduceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduceOption.md -------------------------------------------------------------------------------- /content/pt/functions/reduceRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduceRight.md -------------------------------------------------------------------------------- /content/pt/functions/reduceRightOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reduceRightOption.md -------------------------------------------------------------------------------- /content/pt/functions/removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/removed.md -------------------------------------------------------------------------------- /content/pt/functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reverse.md -------------------------------------------------------------------------------- /content/pt/functions/reverseMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/reverseMap.md -------------------------------------------------------------------------------- /content/pt/functions/runWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/runWith.md -------------------------------------------------------------------------------- /content/pt/functions/sameElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sameElements.md -------------------------------------------------------------------------------- /content/pt/functions/scanLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/scanLeft.md -------------------------------------------------------------------------------- /content/pt/functions/scanRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/scanRight.md -------------------------------------------------------------------------------- /content/pt/functions/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/search.md -------------------------------------------------------------------------------- /content/pt/functions/segmentLength.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/segmentLength.md -------------------------------------------------------------------------------- /content/pt/functions/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/size.md -------------------------------------------------------------------------------- /content/pt/functions/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/slice.md -------------------------------------------------------------------------------- /content/pt/functions/sliding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sliding.md -------------------------------------------------------------------------------- /content/pt/functions/sortBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sortBy.md -------------------------------------------------------------------------------- /content/pt/functions/sortWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sortWith.md -------------------------------------------------------------------------------- /content/pt/functions/sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sorted.md -------------------------------------------------------------------------------- /content/pt/functions/span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/span.md -------------------------------------------------------------------------------- /content/pt/functions/splitAt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/splitAt.md -------------------------------------------------------------------------------- /content/pt/functions/startsWith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/startsWith.md -------------------------------------------------------------------------------- /content/pt/functions/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/sum.md -------------------------------------------------------------------------------- /content/pt/functions/tabulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/tabulate.md -------------------------------------------------------------------------------- /content/pt/functions/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/tail.md -------------------------------------------------------------------------------- /content/pt/functions/tails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/tails.md -------------------------------------------------------------------------------- /content/pt/functions/take.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/take.md -------------------------------------------------------------------------------- /content/pt/functions/takeRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/takeRight.md -------------------------------------------------------------------------------- /content/pt/functions/takeWhile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/takeWhile.md -------------------------------------------------------------------------------- /content/pt/functions/transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/transpose.md -------------------------------------------------------------------------------- /content/pt/functions/tupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/tupled.md -------------------------------------------------------------------------------- /content/pt/functions/uncurried.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/uncurried.md -------------------------------------------------------------------------------- /content/pt/functions/unfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/unfold.md -------------------------------------------------------------------------------- /content/pt/functions/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/union.md -------------------------------------------------------------------------------- /content/pt/functions/unlift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/unlift.md -------------------------------------------------------------------------------- /content/pt/functions/untupled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/untupled.md -------------------------------------------------------------------------------- /content/pt/functions/unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/unzip.md -------------------------------------------------------------------------------- /content/pt/functions/unzip3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/unzip3.md -------------------------------------------------------------------------------- /content/pt/functions/updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/updated.md -------------------------------------------------------------------------------- /content/pt/functions/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/values.md -------------------------------------------------------------------------------- /content/pt/functions/withDefault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/withDefault.md -------------------------------------------------------------------------------- /content/pt/functions/withDefaultValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/withDefaultValue.md -------------------------------------------------------------------------------- /content/pt/functions/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/zip.md -------------------------------------------------------------------------------- /content/pt/functions/zipAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/zipAll.md -------------------------------------------------------------------------------- /content/pt/functions/zipWithIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/content/pt/functions/zipWithIndex.md -------------------------------------------------------------------------------- /data/contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/data/contributors.yaml -------------------------------------------------------------------------------- /data/signatures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/data/signatures.yaml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make 4 | hugo --gc --minify 5 | -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/i18n/es.toml -------------------------------------------------------------------------------- /i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/i18n/ja.toml -------------------------------------------------------------------------------- /i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/i18n/pt.toml -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/contributors/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/contributors/single.html -------------------------------------------------------------------------------- /layouts/functions/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/functions/single.html -------------------------------------------------------------------------------- /layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/home.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/ga.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/partials/ga.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/translations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/partials/translations.html -------------------------------------------------------------------------------- /layouts/shortcodes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/shortcodes/figure.html -------------------------------------------------------------------------------- /layouts/shortcodes/signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/layouts/shortcodes/signature.html -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /static/images/scala-logo-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/scala-logo-144x144.png -------------------------------------------------------------------------------- /static/images/scala-logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/scala-logo-16x16.png -------------------------------------------------------------------------------- /static/images/scala-logo-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/scala-logo-57x57.png -------------------------------------------------------------------------------- /static/images/scala-logo-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/scala-logo-72x72.png -------------------------------------------------------------------------------- /static/images/scala-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/images/scala-logo.svg -------------------------------------------------------------------------------- /static/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superruzafa/visual-scala-reference/HEAD/static/scripts/search.js --------------------------------------------------------------------------------