Converting an object, variable or value from one type to another to satisfy a type restriction, without specifically requesting that conversion through language syntax.

learn more… | top users | synonyms

1
vote
0answers
66 views

proxy pattern in Scala: avoiding expensive initialization [closed]

Let's say an entity has an expensive initialization process, so I create a proxy to it. In Scala I can do it pretty concisely using an implicit conversion to forward calls like this: class ...
6
votes
4answers
168 views

Implicit cast of Func<MyType> to MyType

Given the following class: public class MyType { public static implicit operator MyType(Func<MyType> wrapper) { return wrapper(); } } From the implicit cast of ...
0
votes
2answers
57 views

Find implicit depending on implicit

I have an implicit value, that is depending on another implicit. I want to import the first implicit, when the second is in scope: trait B trait A implicit def provideAnA(implicit b:B) = { ...
4
votes
2answers
97 views

What implicit conversions happen with istream?

I found a piece of C-ish C++ code and asked myself the (slightly academic) question, what implicit type conversions happen here to arrive at the bool that if requires? int val; if( (std::cin >> ...
3
votes
1answer
82 views

why implicit conversion doesn't work here?

I have this kind of code trait Outer1 { type Inner1 } trait Outer2 { type Inner2 val ev: Outer1#Inner1 =:= Inner2 def f: Outer1#Inner1 } object Main { // My Problem here // def ...
5
votes
4answers
132 views

Magnet pattern with repeated parameters (varargs)

Is it possible to use the magnet pattern with varargs: object Values { implicit def fromInt (x : Int ) = Values() implicit def fromInts(xs: Int*) = Values() } case class Values() object Foo { ...
0
votes
0answers
39 views

Scala: Implicits + Override (+ReactiveMongo)

Having code: object MarketTrigger extends DbHandler[MarketTrigger]{ implicit object BSONDateTimeHandler extends BSONHandler[BSONDateTime, DateTime] { def read(time: BSONDateTime) = new ...
0
votes
1answer
83 views

How to get rid of the warning: Implicit conversion shortens 64-bit value into a 32-bit value

First of all, I am a beginner in c++ and I am using Xcode 4.6.2. The compiler configuration is default. I only switched the the compiler to gcc 4.2. If I compile my little code I get the following ...
3
votes
1answer
104 views

C++ Struct implicit conversion

I need to declare a good number of simple POD structures that will behave the same but that are really different types, i.e not typedefs. Anyway I just want to keep them as simple as possible. But ...
0
votes
1answer
48 views

Why doesn't clang or gcc flag this implicit conversion from double to int?

Consider the following code: void f(int x) { std::cout << x << std::endl; } int main() { double x = 1.5; f(x); return 0; } This compiles and runs without any warnings ...
0
votes
1answer
33 views

Why does JavaScript insist on converting floats to integers?

I noticed that if I do in JavaScript: var dict = { "foo" : 1.0 }; when retrieving dict I will get: { foo : 1 } What is the rationale behind this? And what is the preferred way of avoiding it (I ...
1
vote
2answers
69 views

ReactiveMongo 0.9: Joda Datetime Implicit Conversion for Macros.handler

I have case class with joda Datetime field: case DomainPositionData(domain: String, position: Int, change: Option[Int], date:DateTime) Trying to use macro to generate reader&writer: implicit ...
1
vote
1answer
104 views

Mystery behavior of val, lazy val and def with an implicit conversion in my scala app

I have tested three variation of the same code and I got it to work just fine. I want to know why the different behavior. So I have this working code, which converts a long time stamp to a string of ...
1
vote
1answer
87 views

C# [XmlElement] attribute doesn't implicitly cast Type?

So i have a class, Texture2DProcessor, that inherits IXmlSerializable and Implicitly casts to and from Texture2D public static implicit operator Texture2D(Texture2DProcessor o) { return o.Data; } ...
0
votes
1answer
76 views

Is there any way to have gcc issue warnings for implicit enum to int conversion in C?

Is there any way to have gcc issue warnings for implicit enum to int (or vice versa) conversion in C (not C++). I find that the implicit conversions can be a little bit sloppy, and I spend a long ...
2
votes
2answers
67 views

How can I convert Scala Map to Java Map with scala.Float to java.Float k/v conversion

I would like to be able to perform the following, but it fails in the call to useMap. How can I perform this conversion? scala> import scala.collection.JavaConversions._ import ...
0
votes
1answer
61 views

How do I parse DBObject to case class object using subset2?

Does anyone know how to parse DBObject to case class object using subset2 ? Super concise documentation doesn't help me :( Consider following case class case class MenuItem(id : Int, name: String, ...
2
votes
2answers
95 views

How Can I eliminate this dot? I was testing Implicit Conversion

I have been trying to use the Int type like this: 10 twotimes. It is similar to Akka's duration package which allows to write for example 10 minutes and 5 seconds. I did the following: object ...
4
votes
1answer
162 views

Implicit conversion not working with type-safe builder pattern

I am using the Scala type-safe builder pattern for a simple rest request. This works great as a fluent api. sealed abstract class Method(name: String) case object GET extends Method("GET") case ...
1
vote
2answers
72 views

PHP Convert String into Float/Double

I have list of string (size in bytes), I read those from file. Let say one of the string is 2968789218, but when I convert it to float it become 2.00. This is my code so far : $string = ...
0
votes
1answer
19 views

Problems with converting BSTR to float

I'm trying to convert BSTR to float with: wcstod(data, NULL) The problem is that this function works ok if data = 239.78, but i receive them in this format data = 239,78. CComBSTR data = ...
0
votes
1answer
31 views

Scala - diverging implicit expansion when using toMap

I have the following definition of an enum: object GraphType extends Enumeration { type Type = Value val MESSAGE, REQUEST, ERRORS = Value } Now I am trying to map each of the type to the ...
2
votes
1answer
88 views

c++ operator overloaded argument vs normal argument

I have a function template (c++) template<typename T> void print_to_default_file(T &obj, ADDON addon = "") and a overloaded function template<typename T> void ...
5
votes
1answer
99 views

Implicit conversion not working

Why is the following implicit method not applied? And how can I achieve to automatically convert an instance of X to an instance of Y while having an implicit Conversion[X,Y] in scope. trait ...
10
votes
1answer
190 views

In relation to the paragraph 12.7p3 in the C++ Standard, I have the following questions

What are the specific problems that are being avoided with the restrictions imposed by this clause 12.7p3 (see the first part of paragraph below)? In the example shown in 12.7p3 (see below) why ...
2
votes
1answer
217 views

why can write string s=“xxx” in c++?

I often see that: string str = "123"; My question is if string is a class type, why can we directly set it equal to "123" instead of using new or directly initialize it? I am used to seeing ...
0
votes
1answer
103 views

Objective-C implicit conversion of obj-c pointer to autoreleasing id<protocol> error

I'm having a very specific problem, I'm working with a DAO (data access object) that takes varius states, these states are passed into an init method and are then used. Now the problem that I'm ...
1
vote
1answer
85 views

Implicit conversions with template classes

I'm trying to define a class template that can do some input/output operations (via operators << and >> from another class) on many data structures. In short, I can do for example : ...
2
votes
1answer
69 views

ValueError: invalid literal for int() with base 10: '' Unable to spot error

My view.py looks as follows. I think the error is in this section. I will post a detailed function if this is not sufficient for now. Basically the model that takes total as argument is of type ...
1
vote
1answer
49 views

Scala: Dealing with optional XML elements and Case Classes

I'm looking for a better way of building objects from XML in Scala, similar to what's happening in this SO question. I'd like to read xml which may contain missing elements. Currently, I'm using a ...
1
vote
1answer
55 views

tail recursion fails (possibly because of implicit cons conversion)

I have what I believe to be a fairly simple tail-recursive function. However, @tailrec tells me otherwise. @tailrec def _next(continue : String, current : List[Long], first : Boolean ) : ...
0
votes
2answers
93 views

NSObject call to self gives XCode error

I have a class WebServices that inherits from NSObject. I am using xcode4.2 and ARC turned on. When I created the class, there was no other method in the NSObject lie viewDidLoad or init. The issues ...
2
votes
2answers
64 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
88 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 ...
1
vote
2answers
59 views

Excel wrongly converts ranges into dates, how to avoid it?

I have a .tsv file with some fields being ranges like 1 - 4. I want to read these fields as they are textually written. However, upon file opening excel converts automatically those range fields to ...
0
votes
1answer
74 views

How do I make a C++ function implicitly convert a list of ints into a vector parameter?

I am working on a library whose functions commonly take a vector type (__v4si, or a vector of 4 signed ints) as a parameter. (Note that so far this has nothing to do with the C++ STL vectortemplate ...
2
votes
2answers
123 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 ...
5
votes
2answers
162 views

C++ string-like class with implicit conversion

I have a couple of string-like classes that can be implicitly converted to strings. I have a few uses for these; one example is to hold text that needs to be translated at runtime by gettext: class ...
1
vote
2answers
92 views

C# how to make a class that behave like Nullable<T>

Given the code: public class Filter<T> { private bool selected = false; public bool Selected { get { return selected; } } private T value; public T Value { get{ return ...
0
votes
0answers
76 views

Extension of scala collections with composite bounded generic types

I'm rather new to Scala, and I feel like I've jumped into the Scala deep end. I need to write a couple (err, extend) of collections (one similar to ArrayBuffer and one similar to Array) that works ...
-3
votes
1answer
56 views

Convert Facebook user_birthday which is in “January 1, 1987” format into “dd-MM-yyyy” format?

This can be very simple question, but I'm unable to convert "January 1, 1987" type string into "dd-MM-yyyy" format which is returning from Facebook for the value "user_birthday". Please Help! Thank ...
0
votes
1answer
36 views

Explicit convert from object in ActionFilter

The goal is to create a ActionFilter to save all your contacts automatically. Code: ViewModels Origem is used to identify the view source of contact was saved (in this case only two views contato ...
2
votes
1answer
86 views

Implicit conversion from enumeraion type warning

Xcode is now throwing up a warning sign on a previously OK line of code. [_slider2 setThumbImage:thumbImage2Pressed forState:UIControlEventTouchDown]; Gives the warning: "Implicit conversion from ...
0
votes
1answer
86 views

Scala implicit conversion of type parameters

I'm trying to create a library that can convert distances from one unit into another. Ideally I'd be able to specify a distance in one unit, and when passed to a method that requires a different unit, ...
1
vote
1answer
61 views

Implicitly aliasing and extending a scala Seq

I have the following: case class Bar() trait Foo { def bars : Seq[Bar] } case class MyFoo(bars : Seq[Bar]) extends Foo trait Foos extends Seq[Foo] { def bars : Seq[Bar] = ...
2
votes
1answer
99 views

Scala: when multiple implicit conversions apply

The book "Programming in Scala" specifies: Up through Scala 2.7, that was the end of the story. Whenever multiple implicit conversions applied, the compiler refused to choose between them. ... ...
1
vote
1answer
58 views

How to setup an implicit assignment of a class's property?

I have a custom class and would like to assign a value to one of its properties implicitly. I know Microsoft used to have this built-in to some of the controls, such as TextBox1 = "Sets the ...
8
votes
2answers
186 views

How to distinguish compiler-inferred implicit conversion from explicitly invoked one?

Let's imagine passing these two equivalent expressions to a Scala macro: with compiler-inferred implicit conversion: 1+"foo" with explicitly invoked implicit conversion: any2stringadd(1)+"foo" Is ...
2
votes
1answer
48 views

Implicit conversion on traits

Given I have the following trait trait Foo[T]{ ... } I have case classes which use this trait and I would like to be able to implicitly convert Foo[T] into Foo[Z] (for example). For instance, ...
2
votes
1answer
56 views

How does the compiler makes this conversion implicitly?

I was watching a video from //build, where Herb Sutter showed the benefit of explicit conversion keyword with a code snippet: template< /* ... */ > class unique_ptr { public: // ... ...

1 2 3 4 5 9