Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
2answers
2k views

Where does Scala look for implicits?

An implicit question to newcomers to Scala seems to be: where does the compiler look for implicits? I mean implicit because the question never seems to get fully formed, as if there weren't words for ...
29
votes
4answers
2k views

How `is_base_of` works?

Why the following code works? typedef char (&yes)[1]; typedef char (&no)[2]; template <typename B, typename D> struct Host { operator B*() const; operator D*(); }; template ...
28
votes
3answers
281 views

Implicit conversion vs. type class

In Scala, we can use at least two methods to retrofit existing or new types. Suppose we want to express that something can be quantified using an Int. We can define the following trait. Implicit ...
23
votes
2answers
1k views

How can I chain implicits in Scala?

The pimp my library pattern allows me to seemingly add a method to a class by making available an implicit conversion from that class to one that implements the method. Scala does not allow two such ...
15
votes
2answers
276 views

What is the performance impact of Scala implicit type conversions?

In Scala, is there a significant CPU or memory impact to using implicit type conversions to augment a class's functionality vs. other possible implementation choices? For example, consider a silly ...
15
votes
2answers
665 views

Is it guaranteed that new Integer(i) == i in Java?

Consider the following snippet: int i = 99999999; byte b = 99; short s = 9999; Integer ii = Integer.valueOf(9); // should be within cache System.out.println(new Integer(i) == i); ...
14
votes
2answers
105 views

Why does an explicit cast to ‘decimal’ call an explicit operator to ‘long’?

Consider the following code: class Program { public static explicit operator long(Program x) { return 47; } static int Main(string[] args) { var x = new Program(); ...
13
votes
4answers
248 views

Implicit conversion issue in a ternary condition [closed]

Possible Duplicate: Conditional operator cannot cast implicitly? Why does null need an explicit type cast here? I've had a search and haven't found a good explanation for why the ...
12
votes
1answer
109 views

Why this type of implicit conversion is illegal?

I write the following implicit conversion in scala: implicit def strToInt2(str: String):Int = { str.toInt } But it rises this compilation error: <console>:9: error: type mismatch; ...
12
votes
3answers
321 views

Why does this implicit conversion from int to uint work?

Using Casting null doesn't compile as inspiration, and from Eric Lippert's comment: That demonstrates an interesting case. "uint x = (int)0;" would succeed even though int is not implicitly ...
12
votes
3answers
148 views

Should this compile? Overload resolution and implicit conversions

This example seems to compile with VC10 and gcc (though my version of gcc is very old). EDIT: R. Martinho Fernandez tried this on gcc 4.7 and the behaviour is still the same. struct Base { ...
12
votes
3answers
337 views

How many implicits are there in Scala?

If I haven't imported anything but Scala's usual defaults, how many implicits (implicit conversions) are in scope? Is there a complete list of them somewhere, preferably organized by type that they ...
12
votes
2answers
205 views

Why is the address of this volatile variable always at 1?

I wanted to inspect the address of my variable volatile int clock; cout << &clock; But it always says that x is at address 1. Am i doing something wrong??
12
votes
1answer
321 views

Why does Option not extend the Iterable trait directly?

Option is implicitly convertible to an Iterable - but why does it not just just implement Iterable directly: def iterator = new Iterator[A] { var end = !isDefined def next() = { val n = if ...
11
votes
2answers
332 views

delete cout; delete cin; do not give compilation error - a flaw in the Standard library?

Will the following give a compilation error? delete cout; delete cin; The answer is : No. It is a flaw in the implementation of stream classes from the Standard library. They have the following ...
11
votes
3answers
184 views

Pointer to a member function in an inaccessible base

The compilation of the next example : class A { public: void foo() { } }; class B : private A { public: using A::foo; }; int main() { typedef void (B::*mf)(); mf func ...
10
votes
4answers
138 views

Type-proofing primitive .NET value types via custom structs: Is it worth the effort?

I'm toying with the idea of making primitive .NET value types more type-safe and more "self-documenting" by wrapping them in custom structs. However, I'm wondering if it's actually ever worth the ...
10
votes
1answer
451 views

How do I easily convert from one collection type to another during a filter, map, flatMap in Scala?

Suppose I have a List[Int], and I want to call toString on each element, and get back the result as a Vector[String]. What are the various ways to do this in Scala? Is there a solution with a minimal ...
10
votes
1answer
487 views

Double pointer const-correctness warnings in C

You can obviously cast a pointer to non-const data to a a pointer of the same type to const data: int *x = NULL; int const *y = x; Adding additional const qualifiers to match the additional ...
10
votes
1answer
198 views

Question about Scala implicit conversions Non-Ambiguity Rule

Could anybody explain me following situation with Scala implicit conversions mechanism. There is a code: object Main { implicit val x:Int => String = v => "val" implicit def y(v:Int) = ...
9
votes
3answers
260 views

Does an observable difference exist using `unsigned long` and `unsigned int` in C (or C++) when both are 32 bits wide?

I'm using an MPC56XX (embedded systems) with a compiler for which an int and a long are both 32 bits wide. In a required software package we had the following definitions for 32-bit wide types: ...
9
votes
5answers
428 views

Overload resolution failure when streaming object via implicit conversion to string

Disclaimer: I know that implicit conversion to string should be avoided, and that the proper approach would be an op<< overload for Person. Consider the following code: #include ...
9
votes
2answers
219 views

No implicit conversion in overloaded operator

d1 + 4 works but 4 + d1 doesn't even though 4 can be converted implicitly to a GMan. Why aren't they equivalent? struct GMan { int a, b; GMan() : a(), b() {} GMan(int _a) : a(_a), b() {} ...
9
votes
1answer
290 views

In Scala, how come `println(1,2)` works?

In Scala (2.7.7final), the Predef.println method is defined as having the following signature: def println (x : Any) : Unit How come, then that the following works: scala> println(1,2) (1,2) ...
8
votes
3answers
137 views

Scala: Is it possible to indicate a generic class which implements a certain method

I thinks it's easier to explain it with a simple example. (help rephrasing the title is welcome ;-) I'd like to implement a squared method and, using implicit def, automatically add it to any class ...
8
votes
5answers
292 views

Why aren't values implicitly convertible to string in C#?

I have some code like: int value = 5; MessageBox.Show ( value ); and the MessageBox.Show complains saying: "cannot convert from 'int' to 'string'" I seem to remember some cases where values ...
8
votes
3answers
613 views

Implicit conversion, import required or not?

I write object MyString { implicit def stringToMyString(s: String) = new MyString(s) } class MyString(str: String) { def camelize = str.split("_").map(_.capitalize).mkString override def ...
8
votes
4answers
398 views

Question regarding implicit conversions in the C# language specification

Section 6.1 Implicit conversions defines an identity conversion thusly: An identity conversion converts from any type to the same type. This conversion exists such that an entity that already has ...
7
votes
2answers
112 views

Why is the compiler choosing this template function over an overloaded non-template function?

Using VC++ 2010, given the following: class Base { }; class Derived : public Base { }; template<class T> void foo(T& t); // A void foo(Base& base); // B Derived d; ...
7
votes
3answers
84 views

Problems with constructor resolution order

Consider the following constructors for T: struct T { T(const bool) { std::cout << "T(const bool)" << endl; } T(const std::string&) { std::cout << "T(const ...
7
votes
4answers
413 views

Non-const copy constructor and implicit conversions on return value

Consider the following C++ code: struct B { }; struct A { A(int); A(A&); // missing const is intentional A(B); operator B(); }; A f() { // return A(1); // ...
7
votes
3answers
521 views

Scala StringBuilder

Is there an implicit method to convert scala.collection.mutable.StringBuilder to java.lang.StringBuilder? I am using a Java library (JCommander) in which one of the methods (usage) takes a ...
7
votes
2answers
286 views

Why const for implicit conversion?

After extensive reading of ISO/IEC 14882, Programming language – C++ I'm still unsure why const is needed for implicit conversion to a user-defined type with a single argument constructor like the ...
7
votes
2answers
376 views

Why is currying and uncurrying not implicit in scala

If I have a function: f : A => B => C I can define an implicit conversion such that this can be used where a function (A, B) => C is expected. This goes in the other direction also. Why ...
6
votes
1answer
90 views

Curious error message regarding implicits

scala> implicit def transitive[A, B, C](implicit f: A => B, g: B => C): A => C = f andThen g transitive: [A, B, C](implicit f: A => B, implicit g: B => C)A => C scala> class ...
6
votes
1answer
199 views

Is this example of the use of the C++ 'explicit' keyword correct?

In a GoogleTechTalks video on Youtube, Bjarne Stroustrup talks about the upcoming C++0x standard. In the video he mentions the following example: #include <iostream> struct Sick { ...
6
votes
1answer
192 views

Scala - implicit conversion with unapply

I'd like an extractor to implicitly convert its parameters, but it doesn't seem to work. Consider this very simple case: case class MyString(s: String) {} implicit def string2mystring(x: String): ...
6
votes
1answer
381 views

java.lang.Boolean to scala.Boolean question

georgii@gleontiev:~$ scala Welcome to Scala version 2.8.1.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_24). Type in expressions to have them evaluated. Type :help for more information. ...
6
votes
4answers
637 views

Why does std::string not provide a conversion to const char*?

This is more of a policy or a historical question. Why was it decided not to provide a const char * conversion for std::string? Were there a fear someone might do printf("%s", s) and believe it would ...
6
votes
1answer
289 views

A problem of implicit conversions in scala 2.8

I want to write a implicit conversion of Tuple2[A,B] to Seq[C] where C is super type of both A and B. My first try as following: implicit def t2seq[A,B,C](t: (A,B))(implicit env: (A,B) <:< ...
6
votes
2answers
296 views

Can I “pimp my library” with an analogue of TraversableLike.map that has nicely variant types?

Suppose I want to add functionality like map to a Scala List, something along the lines of list mapmap f, which applies the function f to each element of list twice. (A more serious example might be ...
6
votes
2answers
143 views

Are operands inside an expression promoted to larger types according to the following rules?

If numeric expression contains operands (constants and variables) of different numeric types, are operands promoted to larger types according to the following rules: if operands are of types byte, ...
6
votes
2answers
237 views

Using string constants in implicit conversion

Consider the following code: public class TextType { public TextType(String text) { underlyingString = text; } public static implicit operator String(TextType text) { ...
5
votes
2answers
98 views

Rules for determining the set of function type compatible with std::function<R(T1,T2)>?

Suppose if I have this, std::function<int(int,int)> fs; then how can I determine the set of functions (or function objects) which fs can be initialized with? Which of the folllowing is ...
5
votes
3answers
211 views

Function member pointer with private base

The following code yields a compile time error: 'base::print' : cannot access private member declared in class 'base_der' However, I have made the member public in the derived class. Why doesn't ...
5
votes
5answers
134 views

List Generics - implicit casting

I'm targeting .NET 3.5. Let's say I have a class, Bob, which is an abstract base class for SubBob. I can declare this: Bob b = new SubBob(); But I can't do this: // compliation error - can't ...
5
votes
1answer
92 views

Why can not the Compiler decide the type

I am just curious to know why do we need to append m or M for decimal type? Documentation says there is no implicit conversion I think the compiler has enough information because we declare Decimal ...
5
votes
2answers
235 views

Implicit conversions with std::function [closed]

Possible Duplicates: Why can't my C++ compiler deduce template argument for boost function? Isn't the template argument (the signature) of std::function part of its type? I have ...
5
votes
2answers
171 views

Test if implicit conversion is available

I am trying to detect if an implicit conversion exists, and depending on it, to execute some code. For instance : if (x can-be-converted-to SomeType) return something(conversion(x)) else return ...
5
votes
1answer
375 views

Adding Haskell's Monadic Bind Operator to Scala

In Haskell, you can use the bind operator (>>=) like this: repli :: [a] -> [a] repli xs = xs >>= \x -> [x,x] *Main> repli [1,2,3] [1,1,2,2,3,3] I've read that flatMap is ...

1 2 3 4