Skip to content

Commit

Permalink
[REFACTOR]: package name for dataclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
csgn committed Sep 3, 2024
1 parent 0b76066 commit d2c5183
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/kuram/data/Eval.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

package kuram
package eval
package data

trait Eval[+A] { self =>
def value: A
Expand Down
3 changes: 1 addition & 2 deletions src/main/scala/kuram/data/State.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@
*/

package kuram
package state
package data

import applicative.Applicative
import flatmap.FlatMap
import eval.Eval

final class IndexedStateT[F[_], S1, S2, A](underlying: F[S1 => F[(S2, A)]]) {
def run(s1: S1)(using F: FlatMap[F]): F[(S2, A)] = {
Expand Down

0 comments on commit d2c5183

Please sign in to comment.