An implicit in Scala is a function applied or a parameter provided without explicitly appearing in the source code.
2
votes
2answers
38 views
C# getting an error. Cannot implicity convert from System.Data.DataRow to DataRow
I am getting this error
"Error 8 Cannot implicitly convert type 'System.Collections.Generic.List<System.Data.DataRow>' to 'System.Collections.Generic.List<DataRow>'
"
I line of code ...
0
votes
0answers
65 views
Scala tree structure and inserting side effects via implicit parameters
I have a simple tree of Nodes, each of which has an apply method that takes a given State and returns a new State and the next Node in the tree.
trait Node[SE <: SideEffect] {
def apply(state: ...
0
votes
2answers
22 views
Cannot implicitly convert type 'ServiceReference1.Videos[]' to 'System.Collections.Generic.IList<Videos>
I am getting the above error when i call my WCFservice from my web application.
The code is as below
I instantiate my WCF Service:
ServiceReference1.VideosClient objService = new ...
0
votes
0answers
14 views
How does one get the app access token for debug_token inspection on Facebook?
It is suggested that whether your app uses code or token as your response_type you should perform an automated check on the access_token to confirm that the token belongs to the person the app expects ...
1
vote
2answers
41 views
Scala generic implicit values ambiguous when overloading?
The following outputs 0 instead of my desired result, which is 2.
This looks similar to this question, but here I am using parentheses everywhere.
object Test {
implicit def x = List(1, 2)
...
7
votes
1answer
62 views
Does Inheritance in implicit value classes introduce an overhead?
I want to apply scala's value classes to one of my projects because they enable me to enrich certain primitive types without great overhead (I hope) and stay type-safe.
object Position {
implicit ...
0
votes
1answer
63 views
Is there a utility for polymorphic object creation somewhere in the standard library
I often write this utility in my projects:
def instance[T](implicit m: Manifest[T]) =
m.erasure.newInstance.asInstanceOf[T]
It looks like something that could well be in the standard library, ...
0
votes
2answers
94 views
Why this C program complies and runs
With curiosity of the definition and scope of typedef I have written below C code in 2 .c files:
main.c
#include <stdio.h>
int main()
{
int a = 5, b = 6;
printf("a = %d, b = %d\n", a, ...
0
votes
1answer
64 views
Using implicit objects within classes
I am trying to write code to represent polynomials within Scala. I need this code to be type polymorphic, so I am using implicits to deal with different types. I have:
case class Mono[T](degree: Int, ...
0
votes
1answer
34 views
NPE in spray-json because of recursive implicits (context bound issue?)
Perhaps I discovered a bug in spray-json. I get Null Pointer Exception when I'm trying to get json of an object that has field of type of itself. Example is:
case class TestItem(subitems: ...
6
votes
2answers
64 views
Partially applying a function that has an implicit parameter
Can I turn a method which takes an implicit parameter into a function?
trait Tx
def foo(bar: Any)(implicit tx: Tx) {}
foo _ // error: could not find implicit value for parameter tx: Tx
I am ...
1
vote
1answer
92 views
Overhead of implicit object wrappers in Scala
Consider the following, very simple code :
class A(val a: String, val b: Int)
object Test {
implicit class wrap(obj: A) {
def fn = obj.a + obj.b
}
def main(args: Array[String]) =
...
3
votes
1answer
99 views
Is it possible to know what Scala implicit is being used, without the help of an IDE?
For the times when you are reading source code without an IDE at hand.
1
vote
0answers
57 views
Scala: spec 6.23.3 implicit overloading resolution — explanation needed
This is a follow-up of Implicit search decision between multiple alternatives. I'll quote the code from it.
trait A
trait B extends A
caseclass C extends B
trait Tester[-T] { def test (t: T): ...
0
votes
1answer
114 views
scala playframework json implicit case class conversion
I am developing my first Play 2.1 application in Scala.
The task I am trying to accomplish is to parse json into 3 different case classes. The problem is - I do not know where to declare all case ...
2
votes
2answers
85 views
Implicit search decision between multiple alternatives
Is there any way of having multiple suitable alternatives in a type-class where the most specific is chosen, not producing diverging implicit expansion? It would look like this
trait A
trait B ...
2
votes
1answer
71 views
Why is partially applying functions on an implicit class giving me an error?
object RegexImplicits{
implicit class RegexWrapper(r: scala.util.matching.Regex) {
def matches(s: CharSequence): Boolean = r.pattern.matcher(s).find
}
def something(s:String):Boolean = s == ...
2
votes
1answer
55 views
Explicit conversion operator error when converting Dictionary<string,string>
User-defined conversion must convert to or from the enclosing type.
The problem arises when trying to convert the Dictionary<string,string>. Is this even possible?
Below is my code.
using ...
2
votes
2answers
60 views
Fortran implicit change type
I'm reworking some old Fortran code (F77 i suppose), to be compiled with Intel compiler. I came across some SLATEC routines in this form:
subroutine cffti (n,wsave)
dimension wsave(1)
...
1
vote
1answer
85 views
Why does Int not inherit/extend from Ordered[Int]
I have a question on type design. Why does Int not extend the Ordered trait. Isn't Int ordered by nature?
Instead, the scala library provides implicit 'orderer' methods which convert Int to ...
6
votes
0answers
128 views
How does implicit <:< help to find type parameters
A couple of questions arise while I'm reading 7.3.2 Capturing type constraints
from Joshua's Scala in Depth. The example excerpted from the book:
scala> def peek[C, A](col: C)(implicit ev: C ...
1
vote
1answer
90 views
Implicit parameter not passed to higher-order function
I have a function which wraps the call to Anorm's SQL function in a Future:
def sqlWithFuture[T](sql: => T) = Future(DB.withConnection(con => sql))
Using it in a Model:
def userQuery = ...
8
votes
1answer
158 views
Using context bounds “negatively” to ensure type class instance is absent from scope
tl;dr: How do I do something like the made up code below:
def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor"
The 'Not[Functor]', being the made up part here.
I want it to ...
1
vote
1answer
21 views
Mixin SynchronizedSet with SortedSet having implicit Ordering object
I can't seem to create a SortedSet that also mixes in SynchronizedSet. The crux of the problem is SortedSet requires an implicit Ordering object.
val orderByIdThenName = Ordering[(Int, ...
0
votes
2answers
56 views
How do I handle these C warnings?
So, I'm getting a few warnings when compiling a C file that I can't figure out how to fix.
The first warning comes from the following code:
char line[100];
char* carbonCopy;
char *currentWord;
...
2
votes
2answers
104 views
Passing request context implicitly in an actor system
I would like to propagate a request context implicitly in a system of collaborating actors.
To simplify and present the situation, my system has multiple actors and the messages passed to these ...
4
votes
1answer
65 views
Type bounds unexpectedly change precedence of Scala implicit parameter resolution
The Scala example below shows a situation where a required implicit parameter (of type TC[C]) can be provided by both implicit methods in scope, a and b. But when run, no ambiguity results, and it ...
5
votes
2answers
118 views
C# : Custom implicit cast operator failing
Alright, I've been trying to find any information on this for a while. I built a small class to see how hard type-safe-enums are to implement for strings, because I want to use them for database ...
2
votes
1answer
48 views
Inner trait breaks implicit parameter
object Test {
trait Foo
trait TC[A]
object TC {
implicit def tc1[F <: Foo] = new TC[F] {}
implicit def tc2[F1 <: Foo, F2 <: Foo] = new TC[(F1, F2)] {}
}
object Bar {
...
4
votes
1answer
70 views
Pimp-My-Library For all Traversables
I was trying to figure out how to write a functional swap function that works on any Traversable[_], given a collection and the indexes to swap. I came up with the following:
def swap[A, CC <% ...
1
vote
2answers
266 views
Scala design pattern with implicit parameter (Play 2.x in Scala)
I am working on a play 2.1 project and need some guidance on a scala design problem.
For our application, a request context object which stores client information from the incoming request is needed ...
6
votes
2answers
216 views
implicits for objects in Scala
I'm confused by this description in "5.1.3 Implicit resolution" in Joshua Suareth's book Scala in depth, on Page 100:
Scala objects can't have companion objects for implicits. Because of
this, ...
4
votes
1answer
136 views
Manifest[T].erasure is deprecated in 2.10, what should I use now?
I have the following code:
object Log {
def get[T](implicit manifest : Manifest[T] ) = {
LoggerFactory.getLogger( manifest.erasure.getName )
}
def getByName( name : String ) = {
...
1
vote
1answer
89 views
implementing methods of traits with additional implicit parameters
I want an object to implement the trait Iterable and pass an additional implicit parameter to the implemented method:
object MyRepository extends Iterable[Something] {
def iterator(implict ...
2
votes
1answer
131 views
When should I make methods with implicit argument in Scala?
I made codes using play framework in scala which look like the following:
object Application extends Controller {
def hoge = Action( implicit request =>
val username = MyCookie.getName.get
...
1
vote
2answers
72 views
Collision of implicits in Scala
The following Scala code works correctly:
val str1 = "hallo"
val str2 = "huhu"
val zipped: IndexedSeq[(Char, Char)] = str1.zip(str2)
However if I import the implicit method
implicit def ...
4
votes
2answers
132 views
Scala applying implicit functions to a collection
EDIT: I'm using Scala 2.9.2
In Scala, I've defined a custom class which wraps a Double:
class DoubleWrap( d : Double ) {
def double( ) = d * 2
}
and an implicit conversion from Double to ...
1
vote
1answer
62 views
Conversion from QString* to QString&
I'm confused about using pointers and references and I'm facing a little problem.
I got a function :
bool myObject::isFlag( QString &pArgument) const { }
And I'm using it with :
...
5
votes
3answers
157 views
Will an implicit cursor ever fail to close in PL/SQL?
With PL/SQL will there ever be a situation, say in the case of an exception, where an implicit cursor will fail to close?
I understand that an implicit cursor is supposed to close itself after use, ...
1
vote
0answers
68 views
creating assembly to generate code (reflection), but getting unknown exception
I am using the following to generate a method at runtime:
System.Reflection.Assembly currentAssembly = System.Reflection.Assembly.GetExecutingAssembly();
System.CodeDom.Compiler.CompilerParameters ...
1
vote
1answer
78 views
How should I write this higher order function where the parameter func needs an implicit view?
I have a function that makes use of an implicit view to a Seq[A], you can see it makes use of the head method and preserves types:-
scala> def needSeq[A, C <% Seq[A]](col: C) = { (col.head , ...
1
vote
5answers
78 views
Call Overloaded Function in Java?
How can I call the array function in Java?
Currently it looks like:
public static void WriteLine(Object Array[]) {
for (int I = 0; I < Array.length; ++I) {
Out.println(Array[I]);
...
0
votes
2answers
60 views
Make workflow with a lot of intermediary files
I have some trouble with my Makefile:
# Manage rendering of images
.PHONY: explode
all: explode anime.apng
out.ppm: file.code
./pgm -f $<
explode: out.ppm
split -d -a 3 --lines=$(N) ...
1
vote
1answer
75 views
unwanted implicit argument resolution in higher order function map
I'm having issues trying to map some methods defined with implicit arguments over an Option type.
Let's say I define a custom class and a trait with the aforementioned methods operating on said class
...
1
vote
1answer
77 views
GNU make implicit rules for batch file processing
I'd like to use GNU make to automate batch file processing, in my particular case I have a huge number of image files, I'd like to colorspace convert and reencode them to a custom file format. The ...
0
votes
3answers
101 views
C - Very Strange Implicit Declaration
I had a function in a file "draw.h":
void TileSystem() {
// Some code here.
}
And in the "main.c" file, I call it, because I have #included "draw.h" in the file. The function works ...
0
votes
0answers
136 views
Implicit declaration of function 'cond_resched' that is defined as macro in included header
I'm trying to build a kernel with some patches that affect the same files and have a problem.
While building, i get an error:
arch/x86/include/asm/uaccess_64.h: In function 'copy_from_user': ...
0
votes
1answer
202 views
Runtime “could not find implicit value for parameter” error when using Scala's builder idiom
I am writing a Scala class that implements a 2-dimensional matrix of arbitrary objects. I need the class to be more specialized than nested pair of IndexedSeq objects, but extending a collections ...
0
votes
2answers
90 views
The stack of a lua coroutine is entered implicitly without a call to resume?
I am using lua coroutines (lua 5.1) to create a plugin system for an application. I was hoping to use coroutines so that the plugin could operate as if it were a separate application program which ...
0
votes
0answers
61 views
error 1067: Invalid implicit coercion as class?
I have a piece of code creating an instance of an object I call Line.
var velLine:Line;
if(/*some conditions*/)
velLine = new Line(0, 0, x, y);
x and y are taken from an object in the program ...

