0
votes
5answers
99 views
typecheck for return value
I have a list in which i want to be able to put different types. I have a function that returns the current value at index:
void *list_index(const List * list, int index) {
as …
1
vote
3answers
90 views
retrieving type returned by function using “typeof” operator in gcc
We can get the type returned by function in gcc using the typeof operator as follows:
typeof(container.begin()) i;
Is it possible to do something similar for functions taking so …
1
vote
1answer
54 views
Boost::typeof compiler problem: mangling typeof, use decltype instead
Hi,
short example:
#include <boost/typeof/typeof.hpp>
#include <boost/proto/core.hpp>
using namespace boost;
template<class T, class U>
BOOST_TYPEOF_TPL(T() …
0
votes
4answers
149 views
C++ Get object type at compile time, e.g., numeric_limits<typeof<a>>::max()?
Given int a;, I know that the following returns the largest value that a can hold.
numeric_limits<int>::max()
However, I'd like to get this same information without knowin …
0
votes
3answers
76 views
Issue with JavaScript object constructor where arguments are other objects
I'm writing some JavaScript with three classes, one for Roofs, one for Garages, and one for Houses. The house class takes two arguments to its constructor, a Roof and a Garage. Whe …
1
vote
7answers
455 views
How to typeof in C++
How to simulate C# typeof-command behavior in C++?
C# example:
public static PluginNodeList GetPlugins (Type type)
{
...
}
Call:
PluginManager.GetPlugins (typeof(IPlugin))
…
0
votes
3answers
439 views
C#.NET - How Can I Get typeof() to Work With Inheritance?
I will start by explaining my scenario in code:
public class A { }
public class B : A { }
public class C : B { }
public class D { }
public class Test
{
private A a = new A …
0
votes
3answers
290 views
Dynamic Typeof in C#
I am having trouble writing a typeof statement which would be using a variable from a config file the code is like this
Type t = new typeof ("My.other.class" + configValue[0]);
…
1
vote
4answers
213 views
What is the best way to check if an object is an array or not in Javascript?
Say I have a function like so:
function foo(bar) {
if (bar > 1) {
return [1,2,3];
} else {
return 1;
}
}
And say I call foo(1), how do I know it ret …
0
votes
3answers
272 views
c# casting to type gotten from typename as string
I want to work around the fact that my WCF servicelayer can not handle a generic method like this:
public void SaveOrUpdateDomainObject<T>(T domainObject)
{
domainR …
0
votes
3answers
239 views
LINQ: From a list of type T, retrieve only objects of a certain subclass S
Given a simple inheritance hierarchy:
Person -> Student, Teacher, Staff
Say I have a list of Persons, L.
In that list are some Students, Teachers, and Staff.
Using LINQ and C#, i …
1
vote
2answers
84 views
Sun Studio Compiler: implicit function declaration: typeof
When attempting to compile mpd with Sun Studio compiler:
"client.c", line 438: warning: implicit function declaration: typeof
I tracked down the offending lines of code, in dlis …
1
vote
8answers
1k views
How to check if two objects are of the same type in Actionscript?
I want to do this in Actionscript:
typeof(control1) != typeof(control2)
to test if two objects are of the same type. This would work just fine in C#, but in Actionscript it does …
1
vote
6answers
312 views
Need help converting C# to vb. “array initializer is missing 1 elements”
Hello people,
I am trying to convet the following code from C# to Vb using 3.5 framework.
Here is the code in C# that I am having trouble with.
MethodInfo mi = typeof(Page).GetMe …
4
votes
13answers
957 views
testing if javascript function exists
I need to test whether the value of a form's onsubmit is a function. The format is typically onsubmit="return valid();". Is there a way to tell if this is a function, and if it's …
