Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
188 views

How to flatten a list to a list without coercion?

I am trying to achieve the functionality similar to unlist, with the exception that types are not coerced to a vector, but the list with preserved types is returned instead. For instance: ...
11
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) ...
4
votes
4answers
119 views

Why is `'\t\n ' == false` in JavaScript?

In JavaScript... '\t\n ' == false // true I can assume that any string that consists solely of whitespace characters is considered equal to false in JavaScript. According to this article, I ...
4
votes
4answers
169 views

If [] is [] and Array.prototype is [] why doesn't ([] == Array.prototype)

I'm messing around in console and saw the following: >>> [] [] >>> Array.prototype [] >>> [] == Array.prototype false >>> [] === Array.prototype false Can anyone ...
4
votes
1answer
129 views

Is there any way to disable automatic type coercion in SQL Server 2005/2008, from varchar to int (as an example)?

If I have the following SQL: INSERT INTO sometable (someintcolumn) VALUES ('1') This will succeed, inserting the value 1. Is there any way I can ask SQL Server to please don't convert the types ...
4
votes
3answers
151 views

A follow up on type coercion in C++, as it may be construed by type conversion

This is a follow up to my previous question. Consider that I write a function with the following prototype: int a_function(Foo val); Where foo is believed to be a type defined unsigned int. This ...
4
votes
3answers
406 views

How to coerce type of ActiveRecord attribute returned by :select phrase on joined table?

Having trouble with AR 2.3.5, e.g.: users = User.all( :select => "u.id, c.user_id", :from => "users u, connections c", :conditions => ... ) Returns, e.g.: => [#<User id: ...
3
votes
3answers
69 views

Can this type checks with “object” be improved?

if (typeof a !== "object" && typeof b !== "object") { return a == b; } ... // check pairwise equality of object a & b using `for in` Is it the same as if (typeof a !== "object") { ...
3
votes
1answer
129 views

Question about jQuery source == on window

data: function( elem, name, data ) { if ( !jQuery.acceptData( elem ) ) { return; } elem = elem == window ? windowData : elem; Copied directly from the jQuery source. Why is it ...
2
votes
0answers
54 views

Tool to automatically warn on type change in JavaScript?

I have an application at http://prettydiff.com/prettydiff.js. I started writing this application before interpreters got really fast and learned to prefer strict typing. I now want to enforce strict ...
2
votes
2answers
151 views

Understanding JavaScript hoisting and truthy & falsy

I've been reading about JavaScript hoisting sometime back. JavaScript Scoping and Hoisting by Ben Cherry Two words about “hoisting” by Dmitry Soshnikov and, some more about JavaScript ...
2
votes
7answers
79 views

JS: Can “false” be type-coerced to false?

When you use Html5 localStorage values are stored as strings. This is something you need to deal with if you want to store the state of a checkbox and then restore it at a later date. I was hoping ...
2
votes
1answer
494 views

OGNL Addition / Type Coercion

%{control.current + #displayRows} is ultimately the statement I need executed. I have it in an s:if tag and I use test to see if this value lies within a certain range. Ultimately, I get string ...
1
vote
2answers
66 views

Actionscript 3.0 type downcast issue

I have implemented a new class that extends MovieClip. It's name is base.MovieClipWithDelays ("base" here is a package name). My scene contains such an object named Blah. In Symbol Properties I ...
1
vote
2answers
260 views

Checking range with command line arguments

Working on a simple C program I'm stuck with an if test: int line_number = 0; if ((line_number >= argv[2]) && (line_number <= argv[4])) gcc says: cp.c:25: warning: comparison ...
0
votes
2answers
29 views

Is there a way of strictly enforce the type that can be used. (Very Explict Casting)

Is there a way of "strictly" con-straining or enforcing the type that can be use. S <: T Something like Method( value As T ) ' Any Type of T including subtypes of T Method( value Is T ) ' ...
0
votes
1answer
31 views

Grails automatically coerce strings into one of my domain classes

I have a domain class like: class MyDomainClass{ String name } And an interface with a signature like: BigDecimal doBigThangs(MyDomainClass startHere) I want to be able to call it like this ...
0
votes
2answers
144 views

Adobe Flex: Error#1034 in trying to validate datagrid input

Trying to validate the input in my data grid, I am using a function (taken from an Adobe example). This is how the grid goes: <mx:DataGrid id="CashGrid" dataProvider="{cash}" editable="true" ...
0
votes
3answers
175 views

Create String list in Groovy

The following code in Groovy adds GStrings to the list: List<String> args = [ 'cmd', "-Dopt=${value}" ] When I create a ProcessBuilder with this list, I get a ClassCastException. What's a ...
0
votes
1answer
273 views

actionscript 3.0 type coercion failed when dispatching error event

I try to dispatch an error event in an AS3 application: dispatchEvent( new ErrorEvent( ErrorEvent.ERROR, false, false, "my error message")); but I get the following runtime error: TypeError: Error ...
0
votes
1answer
403 views

Changing PHP type coercion

When I moved my sites to a dedicated server from HostGator, several things were broken and all are broken involving type coercion. If $_POST['var'] is 0, it is not considered to be an integer and ...
-1
votes
2answers
132 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 ...