Skip to content

Commit

Permalink
fix :*% bug
Browse files Browse the repository at this point in the history
  • Loading branch information
molarmanful committed Dec 4, 2023
1 parent c42f637 commit 1da877d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions sclin/src/LibItr.scala
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
package sclin

import better.files.*
import monix.reactive.Observable
import scala.concurrent.*
import scala.concurrent.duration.*
import scala.util.chaining.*
import spire.implicits.*
import spire.math.*
import upickle.default.*
import ANY.*
import Lambda.*

extension (env: ENV)

Expand All @@ -27,7 +22,7 @@ extension (env: ENV)
def setmods: ENV = env.mod2: (x, y) =>
x.setmods:
y.toMAP.x.map:
case (k, v) => (k, env.SIG_1f1(_: ANY)(v))
case (k, f) => (k, env.SIG_1f1(f))
def setmodn: ENV = env.mod3((x, f, i) => x.setmodn(i.toSEQ.x, env.SIG_1f1(f)))

def idel: ENV = env.mod2(_.remove(_))
Expand Down

0 comments on commit 1da877d

Please sign in to comment.