Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
1k 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) ...
8
votes
4answers
2k views

Coerce types in different namespaces with Identical layout in C#

I've started writing an interface for FedEx's webservice APIs. They have 3 different APIs that I'm interested in; Rate, Ship, and Track. I am generating the service proxies with SvcUtil.exe. The ...
7
votes
4answers
439 views

Python: coerce new-style class

I want this code to "just work": def main(): c = Castable() print c/3 print 2-c print c%7 print c**2 print "%s" % c print "%i" % c print "%f" % c Of course, the easy ...
3
votes
2answers
1k views

R: Converting a data frame to xts

I'm trying to convert a data frame to xts object using the as.xts()-method. Here is my input dataframe q: q t x 1 2006-01-01 00:00:00 1 2 2006-01-01 01:00:00 2 3 2006-01-01 02:00:00 3 ...
2
votes
1answer
64 views

Coercing from Arrays

Suppose I have this simple class: class Color attr_accessor :rgb def initialize(ary) @rgb = ary end def +(other) other = Color.new(other) unless Color === other ...
2
votes
1answer
59 views

How to set up an AoArrayrefs attribute with coercion from scalar into arrayref?

I would like to set up an attribute that is an array of arrayrefs with coercion of nonarrayrefs to array refs. eg. [ 0, [ 0, 0, 0 ], [1,2,3] ] into [ [0], [ 0, 0, 0 ], [1,2,3] ] also, I'd like to ...
1
vote
1answer
124 views

cassandra-cli: unable to coerce 'allias' to version 1 UUID

I'm triyng to create a column family with TimeUUIDType as name of row: create column family users with column_type = 'Standard' and comparator = 'TimeUUIDType' and default_validation_class = ...
1
vote
1answer
515 views

WPF DependencyProperty event before content changed

First I will explain the context of the problem, because you might be able to point me in a better direction. I need to implement a undo-redo like system on an object. The object has a series of ...
0
votes
1answer
39 views

Lisp Coerce and Set function explanation

I try to do this directly to the interpret: (setf example (coerce "blablabla" 'list)) and works fine. Infact (car example) returns #\b but if I try this: (defun myfun (string) ( (setf example ...
0
votes
1answer
91 views

calling __coerce__() method on derived classes results in an error

My trial was like below, but it didn't work. class MyNum: def __init__(self , n): self.n = n class MyNum2(MyNum): def __coerce__(self , y): return self, y def __radd__(self, y): ...
0
votes
2answers
248 views

writing a “.rtest” output to file, using the R program (ex) via write.table?

I am using R to open up some saved .csv files in a particular pairwise manner and perform a statistical test (mantel.rtest, found in the package "ade4"). The .csv files are sequentially named as ...
0
votes
1answer
101 views

In Ruby, how to implement “20 - point” and “point - 20” using coerce()?

In Ruby, the operation of point - 20 # treating it as point - (20,20) 20 - point # treating it as (20,20) - point are to be implemented. But the following code: class Point ...
-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 ...