We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f618b commit 16e81e1Copy full SHA for 16e81e1
shared/src/main/scala-3/com/thoughtworks/binding/bindable/package.scala
@@ -2,13 +2,6 @@ package com.thoughtworks.binding.bindable
2
import com.thoughtworks.binding._
3
import com.thoughtworks.binding.Binding._
4
import scala.collection.immutable.ArraySeq
5
-import scala.language.implicitConversions
6
-
7
-given [From, Value](using
8
- bindable: Bindable.Lt[From, Value]
9
-): Conversion[From, Value] with
10
- def apply(from: From) = bindable.toBinding(from)
11
-end given
12
13
extension [From](from: From)(using bindable: Bindable[From])
14
def toBinding: Binding[bindable.Value] = bindable.toBinding(from)
0 commit comments