Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

106
votes
10answers
20k views

C#: Interfaces - Implicit and Explicit implementation

What are the differences in implementing interfaces implicitly and explicitly in C#? When should you use implicit and when should you use explicit? Are there any pros and/or cons to one or the ...
15
votes
7answers
7k views

can we define implicit conversions of enums in c#?

Is it possible to define an implicit conversion of enums in c#? something that could achieve this? public enum MyEnum { one = 1, two = 2 } MyEnum number = MyEnum.one; long i = number; Edit: ...
15
votes
5answers
2k views

Why Can A C# Class Inherit From One Interface Both Implicitly and Explicitly?

Today I happens to find that one C# class can inherit one interface both in implicit and explicit way. This surprises me. If C# works in this way, then one instance can behave differently when ...
13
votes
7answers
374 views

C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?

Obviously there can't be an instance member on a static class, since that class could never be instantiated. Why do we need to declare members as static?
13
votes
2answers
527 views

Why can't the first parameter list of a class be implicit?

scala> class A(implicit a: Int); defined class A scala> class B()(implicit a: Int); defined class B scala> new A()(1) res1: A = A@159d450 scala> new B()(1) res2: B = B@171f735 ...
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
4answers
666 views

Coding with scala implicits in style

Are there any style guides that describe how to write code using scala implicits? Implicits are really powerful, and therefore can be easily abused. I was wondering if there are some general ...
11
votes
2answers
202 views

Is there a systematic way to discover which implicit defs are in scope, and which one is bound at a particular point?

Often there's no need to pay any attention to implicit arguments in Scala, but sometimes it's very helpful to understand how the compiler is automatically providing them. Unfortunately, this ...
11
votes
2answers
843 views

Scala implicit usage choices

I've been wondering whether transparent implicit conversions are really such a good idea and whether it might actually be better to use implicits more, um, explicitly. For example, suppose I have a ...
10
votes
5answers
2k views

Avoiding implicit def ambiguity in Scala

I am trying to create an implicit conversion from any type (say, Int) to a String... An implicit conversion to String means RichString methods (like reverse) are not available. implicit def ...
9
votes
1answer
344 views

Why is this call to implicitly ambiguous?

The signature of the sum method on TraversableOnce is as follows: def sum[B >: A](implicit num: Numeric[B]): B = foldLeft(num.zero)(num.plus) I can use it thus: scala> (1 to 10).sum res0: ...
9
votes
1answer
393 views

Type inference for a scala combinator calculus data model

I'm trying out a very light-weight encoding of combinator calculus in scala. Initially, I'm simply implementing the S and K combinators, application and constant values. Later I hope to lift scala ...
9
votes
1answer
838 views

C++ implicit conversion to bool

In an effort to make my enums more typesafe, I've been using macro-generated overloaded operators to disallow comparing enums against anything but an identically typed enum: #include ...
8
votes
1answer
119 views

What was the reason to restrict on combining implicit parameters and view/context bounds?

One of the recent commits to Scala master removes restriction on combining context/view bounds with implicit parameters. That's a great improvement that reduces amount of boilerplate, but what was the ...
8
votes
2answers
399 views

Confused about Scala method calling conventions, specifically the sum function on Seq

I was playing around with the new Scala IDE (Eclipse 3.6.2 + Scala IDE 2.0.0 [Scala 2.9.0]) and I tried to do something simple like this: (1 to 10).sum That works fine, but I've been doing a lot of ...
8
votes
7answers
2k views

ReSharper and var

I have ReSharper 4.5 and have found it invaluable so far but I have a concern; It seems to want to make every variable declaration implicit(var). As a relatively new developer how much should I trust ...
8
votes
4answers
732 views

Are implicit operators and TypeConverters equivalent?

It seems to me its very easy to implement an implicit operator versus a TypeConverter, so I'm assuming they aren't equivalent because of the prevalence of TypeConverters in the framework (see anything ...
7
votes
4answers
292 views

avoid explicit passing of lookup table

In my very simple boolean expression toy program, I have the following evaluation function: eval' :: Expr -> M.Map Char Bool -> Bool eval' (Const c) values = c eval' (Var v) values = ...
7
votes
3answers
237 views

Why is there an implicit type conversion from pointers to bool in C++?

Consider the class foo with two constructors defined like this: class foo { public: foo(const std::string& filename) {std::cout << "ctor 1" << std::endl;} foo(const bool ...
7
votes
2answers
513 views

Scala: reconciling type classes with dependency injection

There seems to be a lot of enthusiasm among Scala bloggers lately for the type classes pattern, in which a simple class has functionality added to it by an additional class conforming to some trait or ...
7
votes
2answers
163 views

How can implicits with multiple inputs be used in Scala?

For example, how can I write an expression where the following is implicitly applied: implicit def intsToString(x: Int, y: Int) = "test" val s: String = ... //? Thanks
7
votes
2answers
2k views

Implicit return values in Ruby

I am somewhat new to Ruby and although I find it to be a very intuitive language I am having some difficulty understanding how implicit return values behave. I am working on a small program to grep ...
6
votes
2answers
99 views

Exchanging a type parameter's upper bound for an evidence parameter

I want to relax the constraints on a trait's type parameter and instead impose them on a method in the form of an evidence parameter. Given some skeletal setup: trait State[ Repr ] object Observer { ...
6
votes
3answers
217 views

Scala Functional Literals with Implicits

Forgive me if this has already been asked elsewhere. I have a Scala syntax question involving function-values and implicit parameters. I'm comfortable using implicits with Scala's currying ...
6
votes
6answers
888 views

Implicit type conversion rules in C++ operators

I want to be better about knowing when I should cast. What are the implicit type conversion rules in C++ when adding, multiplying, etc. For example, int + float = ? int * float = ? float * int = ? ...
6
votes
3answers
162 views

Why isn't the “import” subroutine capitalized in Perl

I am curious. Most of Perl's implicitly called subroutines must be named in all caps. TIESCALAR, DESTROY, etc. In fact perldoc perltoot says If constructors can have arbitrary names, then why ...
6
votes
2answers
159 views

Why aren't operator conversions implicitly called for templated functions? (C++)

I have the following code: template <class T> struct pointer { operator pointer<const T>() const; }; void f(pointer<const float>); template <typename U> void ...
6
votes
2answers
236 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) { ...
6
votes
1answer
875 views

Why do we still need a .lib stub file when we've got the actual .dll implementation?

i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that got the actual implementation code ? i mean why linkers still need .lib files to do ...
6
votes
5answers
350 views

Strings and ints, implicit and explicit

Had a coworker ask me this, and in my brain befuddled state I didn't have an answer: Why is it that you can do: string ham = "ham " + 4; But not: string ham = 4; If there's an implicit ...
5
votes
2answers
85 views

What instance of CanBuildFrom does the Scala compiler find out?

everyone . Please forgive me asking a stupid question on Scala. Though I have been programming in Scala for about 2 years, I still find it hard to understand implicit usage. Let's take an example ...
5
votes
1answer
85 views

How to make code using Value[T : Numeric] more “flexible” like the “unboxed” counterparts?

If I have code like 5 * 5.0 the result gets converted to the most accurate type, Double. But this doesn't seem to work with code like case class Value[T : Numeric](value: T) { type This = ...
5
votes
2answers
228 views

How does this recursive List flattening work?

A while back this was asked and answered on the Scala mailing list: Kevin: Given some nested structure: List[List[...List[T]]] what's the best (preferably type-safe) way to flatten it to a ...
5
votes
4answers
235 views

How to declare traits as taking implicit “constructor parameters”?

I'm designing a class hierarchy, which consists of a base class along with several traits. The base class provides default implementations of several methods, and the traits selectively override ...
5
votes
3answers
164 views

Perl map block local variable usage

This code compiles a set by way of hash keys of the unique basename stubs in a set of paths. %stubs = map { $f=basename $_; $f =~ /^([A-Za-z]+[0-9]+)\./ ; $1=>() } @pathlist; Why do I need the ...
5
votes
1answer
227 views

Should Scala's map() behave differently when mapping to the same type?

In the Scala Collections framework, I think there are some behaviors that are counterintuitive when using map(). We can distinguish two kinds of transformations on (immutable) collections. Those ...
5
votes
4answers
447 views

What are type classes in Scala useful for?

As I understand from this blog post "type classes" in Scala is just a "pattern" implemented with traits and implicit adapters. As the blog says if I have trait A and an adapter B -> A then I can ...
5
votes
3answers
236 views

Is it possible to pass “this” as implicit parameter in Scala?

Suppose I want to wrap code that can throw exceptions with a try-catch block that logs the exception and continues. Something like: loggingExceptions { // something dangerous } Ideally, I would ...
5
votes
3answers
327 views

Type class pattern in Scala doesn't consider inheritance?

I am designing an API using type classes in some cases however I have encountered a problem with implicit resolution. As shown below, if there is an implicit object for type A but an object of type B ...
5
votes
2answers
191 views

Why cannot this case of implicit conversions be optimized?

Why cannot Scala optimize the following: a. implicit def whatever[A](a: A) = new { ... } to: b. class some$generated$name(a: A) { ... } implicit def whatever[A](a: A) = new ...
5
votes
2answers
318 views

ASP.NET: explicit vs implicit localization?

To my mind the advantage of implicit localization over explicit localization is that if you have more than one property to localize for a given control, it's a more economical syntax. In the case ...
5
votes
7answers
587 views

How to create a generic C# method that can return either double or decimal?

I have a method like this: private static double ComputePercentage(ushort level, ushort capacity) { double percentage; if(capacity == 1) percentage = 1; // do ...
5
votes
5answers
1k views

Is it possible to plot implicit equations using Matplotlib?

many thanks again to people who have kindly offered help (especially to Mark for his outstanding response to my previous question). I would like to plot implicit equations (of the form f(x,y)=g(x,y) ...
5
votes
3answers
286 views

Preventing implicit cast of numerical types in constructor in C++

I have a constructor of the form: MyClass(int a, int b, int c); and it gets called with code like this: MyClass my_object(4.0, 3.14, 0.002); I would like to prevent this automatic conversion from ...
5
votes
1answer
609 views

Factory methods for implementations of Java interfaces wrapped with Scala implicits?

I'm using Scala implicits to define a rich wrapper for a Java interface: class RichThing { def richStuff: Unit = {} } In the companion object I define the implicit conversion and an apply factory ...
4
votes
2answers
92 views

Why these implicit conversions resulted in looping code

Consider following code in Scala: object Test { class A {} class B extends A {} class AI extends A { def sayHello: String = "Hello from AI" } implicit def AtoAI(a: A): AI = a ...
4
votes
3answers
97 views

Choice of implicit conversion location with a block

In the following code, the implicit conversion is applied around the println(2) line; I had foolishly expected it to apply around the entire block { println(1); println(2) }. How should I reason about ...
4
votes
2answers
94 views

Recursively using implicit methods in Scala

I'd like to define some implicit methods for arrays of doubles to make my code cleaner. Ideally, they would look like this: type Vec = Array[Double] implicit def enrichVec(v: Vec) = new { def ...
4
votes
2answers
124 views

incredible implicit Array conversion in scala

According to Scaladoc, there is no method named map in Array class, but there is an implicit function implicit def intArrayOps (xs: Array[Int]): ArrayOps[Int] defined in scala.Predef. So you can apply ...
4
votes
2answers
70 views

Scala: two implicit argument with the same declaration

I have following class: class Example(implicit doSomething1: (Double, Double) => Double, implicit doSomething2: (Double, Double) => Double) { //.. } As you see the constructor has two ...

1 2 3 4