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

0
votes
1answer
63 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
50 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
41 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
79 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
132 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
39 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
15 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
29 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
80 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
83 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
185 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
140 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
63 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
80 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
60 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
38 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
49 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
57 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
59 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
84 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
44 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
66 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
97 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
152 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
86 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
66 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
42 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
27 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
70 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
69 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
53 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
91 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
51 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
180 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
47 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: // ... ...
0
votes
1answer
66 views

Can an implicit conversion of an implicit value satisfy an implicit parameter?

I'm defining some Scala implicits to make working with a particular unchangeable set of Java classes easier. The following Scala code is a simplified example that obviously looks crazy, in the real ...
3
votes
1answer
72 views

Adding a pairwise difference to generic collections - implicit resolution doesn't kick in

Ok, so I have this: implicit final class RichIterableLike[A, Repr <: IterableLike[A, Repr]](val it: Repr) extends AnyVal { def pairDiff[To](implicit num: Numeric[A], cbf: CanBuildFrom[Repr, ...
-2
votes
2answers
60 views

how user define conversion happen in c# [closed]

Can any one explain the following program that how user define conversion happen both explicitly and implicitly? Please also see my comments at the explicitly conversion method and implicit ...
1
vote
3answers
156 views

Scala implicit conversion of any numeric type

I'm currently learning the Scala programming language (love it by the way) and have recently found out of implicit conversions. So i have my class Complex and its companion object. and in my companion ...
-4
votes
1answer
69 views

Lack of Implicit Conversions for Strings and STL Containers

Why doesn't C++ have implicit conversion to bool defined for std::string and STL containers when writing code like if (!x.empty()) { ... } instead of more shorter if (x) { ... } when x is of ...
0
votes
3answers
115 views

Exception in thread “main” java.util.UnknownFormatConversionException: Conversion = '-'

The problem is "Conversion = '-'", The source code is here, I had commented the "printf" to avoid some problems,always cased by "print":this is a program used for calculating Loan in year; import ...
2
votes
1answer
85 views

removing implicit conversion in SQL Server

I am attempting to eliminate an implicit conversion from the database. I added the CAST statement below on the UpdatedByID field as this was a Char(10), it is joining to an INT in the FROM statement. ...
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 ...
1
vote
1answer
53 views

Extend user defined higher kinded type

I have a user defined alias for a higher kinded type in scala: type FutureOfLastError = Future[LastError] I also have a value of that type: val myFuture: FutureOfLastError = ... To write ...
2
votes
1answer
63 views

What does “parameterized overloaded implicit methods are not visible as view bounds” compiler warning mean?

I declared two utility methods as implicit class MyClass { ... } object MyClass { implicit def finish: MyClass[Any,Nothing,Unit] = finish(()); implicit def finish[R](result: R): ...
0
votes
1answer
78 views

Indexing an std::vector with a negative index

I tried to index a vector using a negative index. The vector::at() member function checks whether the specified index is within the bounds of the vector, and if this does not occur, an out_of_range ...
0
votes
0answers
102 views

Using CDATA with WCF REST for wrapping string[]

I wanted to send strings wrapped by a CData element using WCF. WCF doesn’t have a builtin mechanism for this, and i found a solution here: Using CDATA with WCF REST starter kits But this handles only ...
5
votes
1answer
80 views

Implicit conversion to template

My example below suggests that implicit conversions from non-template types to template types won't work as seamlessly as those only involving non-template types. Is there a way to make them work ...
3
votes
1answer
115 views

don't understand scalaz endo function

In scalaz, the endo function in Function1Ops is implemented this way: def endo(implicit ev: R =:= T): Endo[T] = Endo.endo(t => ev(self(t))) I am curious why in the body of Endo.endo ...

1 2 3 4 5 9