Tagged Questions
The coercion tag has no wiki summary.
34
votes
7answers
662 views
Are there cases where a typedef is absolutely necessary?
Consider the following excerpt from the safe bool idiom:
typedef void (Testable::*bool_type)() const;
operator bool_type() const;
Is it possible to declare the conversion function without the ...
11
votes
12answers
853 views
How to encourage implementation of TDD?
In a consulting company where the general thought of TDD and automated testing as a whole is appreciated by the programmers but thought of as "been there, done that, doesn't work" by management, how ...
10
votes
2answers
3k views
Casting vs. coercion in Python
In the Python documentation and on mailing lists I see that values are sometimes "cast", and sometimes "coerced". What is the difference?
9
votes
1answer
998 views
In Ruby, how does coerce() actually work?
It is said that when we have a class Point and knows how to perform point * 3 like the following:
class Point
def initialize(x,y)
@x, @y = x, y
end
def *(c)
Point.new(@x * c, @y * c)
...
9
votes
2answers
876 views
How can I convert a LazySeq of Characters to a String in Clojure?
Let's say I have a LazySeq of java.lang.Character like
(\b \ \! \/ \b \ \% \1 \9 \/ \. \i \% \$ \i \space \^@)
How can I convert this to a String? I've tried the obvious
(String. my-char-seq)
...
8
votes
2answers
1k views
How do I make Binding respect DependencyProperty value coercion?
I have a control with a DependencyProperty with a CoerceValueCallback.
This property is bound to a property on a model object.
When setting the control property to a value that causes coercion the ...
5
votes
1answer
91 views
numpy coercion problem for left-sided binary operator
I am implementing an array-like object that should be interoperable with standard numpy arrays. I just hit an annoying problem that narrows down to the following:
class MyArray( object ):
def ...
5
votes
1answer
161 views
Unboxing uint/int without knowing what's inside the box
I have an object o that is known to be a boxed int or uint:
object o = int.MinValue
object o = (uint)int.MinValue // same bytes as above
I don't know what's in the box, all I care about is that ...
5
votes
1answer
139 views
How can I determine if an object or reference has a valid string coercion?
I've run into a situation (while logging various data changes) where I need to determine if a reference has a valid string coercion (e.g. can properly be printed into a log or stored in a database). ...
4
votes
2answers
48 views
Python: how to act on re's matched string
The following
>>> re.sub(r'(\d+)', r'\1' * 2, 'test line 123')
gives
'test line 123123'
is there a way to make it give
'test line 246'
?
float() coercion doesn't work:
...
4
votes
2answers
86 views
Why this behavior when coercing a list to character via as.character()?
In the process of (mostly) answering this question, I stumbled across something that I feel like I really should already have seen before. Let's say you've got a list:
l <- list(a = 1:3, b = ...
4
votes
2answers
186 views
Moose deep coercion - ArrayRef of user-defined types
What am I missing in the following subtype and coercion chain? I'd like to be able to coerce an arrayref of validated types or die from the following inputs:
Coercible string
Valid string
Arrayref ...
4
votes
3answers
248 views
Coercing float into unsigned char on ARM vs. Intel
When I run the following C code on an Intel machine...
float f = -512;
unsigned char c;
while ( f < 513 )
{
c = f;
printf( "%f -> %d\n", f, c );
f += 64;
}
...the output is as ...
3
votes
1answer
370 views
Moose coercion and builders
This follows on from my previous question about Moose structured types. I apologise for the length of the question. I wanted to ensure that I included all the necessary details.
MyApp::Type::Field ...
3
votes
1answer
941 views
Can I use map coercion in groovy to mock a class with a constructor that has parameters?
Java example classes under test
public class Sample {
public void printPie() {
System.out.println("Pie.");
}
}
public class SampleCont {
String _PIE;
public SampleCont() {
...
2
votes
1answer
104 views
Converting from log to linear in C and taking average
I don't know C well at all, and I'm trying to edit someone's code, but I'm having issues when trying to convert values from the log to linear domains.
For example, let's say we have an array A that ...
2
votes
2answers
73 views
Coerce to multiple-parameter type in Haskell
I have a type
class IntegerAsType a where
value :: a -> Integer
data T5
instance IntegerAsType T5 where value _ = 5
newtype (Num a, IntegerAsType n) => PolyRing a n = PolyRing [a]
My ...
2
votes
1answer
137 views
Haskell: how can I use math functions like “logBase” to work with unbounded integers?
I'm trying to generate a list of Fibonacci numbers to compare with a list of primes (e.g.).
Both lists begin at the first known fibo/prime number and end at the 10000th.
The problem is: a graphical ...
2
votes
2answers
2k views
Convert factor to integer
I am manipulating a data frame using the reshape package. When using the melt function, it factorizes my value column, which is a problem because a subset of those values are integers that I want to ...
2
votes
2answers
135 views
Class instance type coercion in module signature
Several of my modules contain global class instances that implement a given class type with two methods, private_method and public_method.
I want MyModule.my_instance # public_method to be available ...
2
votes
2answers
241 views
A simple question about type coercion in C++
Given a function prototype, and a type definition:
int my_function(unsigned short x);
typedef unsigned short blatherskite;
Is the following situation defined by standard:
int main(int argc, char** ...
2
votes
3answers
103 views
Is it possible to coerce string values in xml to bool?
Let's suppose I have xml like this one:
<Server Active="No">
<Url>http://some.url</Url>
</Server>
C# class looks like this:
public class Server
{
[XmlAttribute()]
...
2
votes
3answers
151 views
coercing nil into a number
What is happening here??
irb(main):001:0> a= nil
=> nil
irb(main):002:0> b = nil
=> nil
irb(main):003:0> a
=> nil
irb(main):004:0> a+b
NoMethodError: undefined method `+' for ...
2
votes
4answers
2k views
C++ user-defined conversion operators without classes?
In C++ is it possible to define conversion operators which are not class members? I know how to do that for regular operators (such as +), but not for conversion operators.
Here is my use case: I ...
1
vote
1answer
72 views
Coercion in Silverlight does not work
I've a custom control look like this:
generic.xaml
<Style TargetType="controls:MyControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate ...
1
vote
1answer
88 views
Silverlight: Missing DependencyObject.CoerceValue
In Silverlight there is no DependencyObject.CoerceValue. I am looking for an alternative, to do the following WPF-Code also in Silverlight.
The situation:
There is a class Range, which has several ...
1
vote
2answers
363 views
Perl: fixing Moose attribute and type coercion problems
I recently upgraded Moose to v1.15 and found that a set of modules I use no longer worked. The error I get is:
You cannot coerce an attribute (source) unless its type (GOBO::Node) has a coercion at
...
1
vote
2answers
228 views
Why does Ruby need to force an Array into string by using “to_a” if it is clear it is a String addition?
For example:
ruby-1.9.2-p0 > a = ['hello', 'world']
=> ["hello", "world"]
ruby-1.9.2-p0 > "foo" + a
TypeError: can't convert Array into String
from (irb):3:in `+'
from (irb):3
...
1
vote
1answer
548 views
Dependency Property Coercion binding issues
I have both VS2008 and VS2010 installed, and I see a very strange behavior
In VS2008, I have a simple WPF app:
<TextBox x:Name="textbox" Text="{Binding ...
1
vote
2answers
517 views
Bitstream to Float Type Coercion
I'm having trouble getting the following code to work correctly. Using an online IEEE-754 converter, I wrote out (by hand) to the testData.txt file that is read with the bit string that should ...
1
vote
4answers
235 views
Python: Identifying a numeric string?
I tried a couple of approaches, I am really only concerned with performance, not correctness. I noticed that the regex based implementation is about 3-4x slower than the one that uses type coercion. ...
1
vote
2answers
292 views
Nested Class Coercion Fail Between CFC and Flex
I have two AS3 classes, A and B. Class A contains an ArrayCollection that will hold multiple instances of class B.
In ColdFusion, I have matching CFCs, with same-named variables in the same order, ...
1
vote
3answers
220 views
How does JavaScript treat the ++ operator?
JavaScript does funky automatic conversions with objects:
var o = {toString: function() {return "40"; }};
print(o + o);
print((o+1)+o);
print((o*2) + (+o));
will print:
4040
40140
120
This is ...
0
votes
2answers
117 views
AS3: Type Coercion failed: cannot convert flash.events to flash.events.MouseEvent
When I placed this AddEventListener I got this "Type Coercion failed message"
addEventListener(Event.ENTER_FRAME,onEnterFrm);
Located above the mouse event:
...
0
votes
1answer
81 views
How to write coercion methods
I'm having a bunch of custom-made Reference Classes and would like to write coercion methods for some of them. It'd be nice if a function call would look like this:
objectCoerce(src=obj, to="list", ...
0
votes
1answer
78 views
AS3: Using for/do loop with many movieclips throws implicit coercion error
I have the following function constantly running to check for collision between a player-controlled ball (mcBall) and a number of walls (aptly named mcWall1, mcWall2, etc.): (the var numberofwalls ...
0
votes
0answers
129 views
Implicit coercion of a value of type SomeCustomType to an unrelated type Object. Huh?
Actually, the problem is in the title :) I've couldn't find and help in google. What in flex (if it exists) cannot be converted to Object?
The IDE Idea showing that SomeCustomType has no errors.
...
0
votes
1answer
52 views
Type Coercion Error with Loaded and Instantiated SWF
I am loading a swf, "ImageEdit" into another swf, "Shell". I instantiate ImageEdit with
var ClassReference:Class=imageEditApplicationDomain.getDefinition("ImageEdit") as Class;
var ...
0
votes
4answers
370 views
Type coercion in c: unsigned int to float
I'm communicating serially between a host pc and an embedded processor. On the embedded side, I need to parse character strings for floating point and integer data. What I am currently doing is ...
0
votes
0answers
87 views
Silverlight: CoerceValue on changing DependencyProperty combined with DataBinding
I've a class RangeSlider containing two Sliders. One for the left, one for the right.
Both values are a DependencyProperty of my RangeSlider, bound to the Slider.Value:
Binding bindingSliderValueLeft ...
0
votes
0answers
147 views
rewriting FLARToolkit PV3D example to sandy3D
I've tried and tried to rewrite an example I got from an adobe page: http://www.adobe.com/devnet/flash/articles/augmented_reality.html to use sandy3D instead of papervision3D.
In the process I also ...
0
votes
2answers
812 views
Flash Error #1034: Type Coercion failed when running with Flash Develop
I have compiled an SWC and am using it in a flashdevelop project.
When I compile the project all is fine, but when I run/debug the project I get:
[Fault] exception, information=TypeError: Error ...
0
votes
3answers
336 views
F# return type coercion
In F# I have a function that returns System.Linq.Expression instances:
and System.Object with
member this.ToExpression() =
match this with
| :? System.Int32 -> Expression.Constant(this) ...
0
votes
2answers
1k views
Flash AS3: Getting this error: Access of undefined property - basic scope help needed :(
I'm still used to the AS2 style of all code on 1 frame, I'm trying to code AS3 in class files and I'm having a problem with a basic package setup. Scope issues are killing me with trying to learn AS3. ...
0
votes
5answers
2k views
Coercing template class with operator T* when passing as T* argument of a function template
Assume I have a function template like this:
template<class T>
inline
void
doStuff(T* arr)
{
// stuff that needs to use sizeof(T)
}
Then in another .h filee I have a template class Foo that ...
-1
votes
2answers
128 views
In Ruby, can the coerce() method know what operator it is that requires the help to coerce?
In Ruby, it seems that a lot of coerce() help can be done by
def coerce(something)
[self, something]
end
that's is, when
3 + rational
is needed, Fixnum 3 doesn't know how to handle adding a ...