Skip to content

Commit

Permalink
feat: add all instances
Browse files Browse the repository at this point in the history
  • Loading branch information
csgn committed Sep 13, 2024
1 parent 44d935a commit 6578c08
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 3 deletions.
36 changes: 36 additions & 0 deletions core/src/main/scala/kuram/syntax/all.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright (c) 2024 kattulib
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package kuram
package syntax

private[syntax] trait AllSyntax
extends ApplicativeSyntax
with ApplySyntax
with ComposeSyntax
with EqSyntax
with FlatMapSyntax
with FoldableSyntax
with FunctorSyntax
with MonadSyntax
with MonoidSyntax
with SemigroupSyntax
with SemigroupalSyntax
21 changes: 21 additions & 0 deletions core/src/main/scala/kuram/syntax/eq.scala
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*
* Copyright (c) 2024 kattulib
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package kuram
package syntax

Expand Down
4 changes: 1 addition & 3 deletions core/src/main/scala/kuram/syntax/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
package kuram

package object syntax {
object all extends AllSyntax
object semigroup extends SemigroupSyntax
object monoid extends MonoidSyntax

object compose extends ComposeSyntax
object foldable extends FoldableSyntax

object eq extends EqSyntax

object semigroupal extends SemigroupalSyntax
object functor extends FunctorSyntax
object apply extends ApplySyntax
Expand Down

0 comments on commit 6578c08

Please sign in to comment.