Tagged Questions
The variant tag has no wiki summary.
33
votes
10answers
2k views
How is duck typing different from the old 'variant' type and/or interfaces?
I keep seeing the phrase "duck typing" bandied about, and even ran across a code example or two. I am way too lazy busy to do my own research, can someone tell me, briefly:
the difference between a ...
8
votes
2answers
289 views
What's the syntax for including methods in a variant record?
I have the following record definition
E3Vector3T = packed record
public
x: E3FloatT;
y: E3FloatT;
z: E3FloatT;
function length: E3FloatT;
function normalize: ...
7
votes
4answers
103 views
VB6: Disable variants
I have a large VB6 projects where a lot of variables don't have an explicitly defined type, so they automaticly default to Variant type. Finding all those by hand is a massive task, so is there any ...
7
votes
3answers
357 views
What's the recommended implementation for hashing OLE Variants?
OLE Variants, as used by older versions of Visual Basic and pervasively in COM Automation, can store lots of different types: basic types like integers and floats, more complicated types like strings ...
6
votes
1answer
120 views
How can I convert from generic to Variant in Delphi
I have a Delphi generic class that exposes a function with an argument of the generic type. Inside this function, I need to pass an instance of the generic type on to another object expecting a ...
6
votes
1answer
280 views
How do I get a variant from a pointer in Delphi?
I need to be able to convert a naked pointer to a variant. I know that the pointer points to a variant, but I can't seem to get it back out. A straight cast (as I pretty much thought) fails:
Result ...
5
votes
4answers
132 views
Can an Ada Variant Record be binary compatible to a C++ union?
I am designing a communication middleware for use in an application which has a module in Ada and many modules in C++ which communicates passing parameters (scalar values) and structures. The ...
5
votes
1answer
112 views
Can a variant array have 0 elements?
The normal dynamic array supports empty (= nil, Length() = 0).
The variant array however does not seem to support this.
I pass my data in variant array (because of OLE/COM), and I get an error when ...
5
votes
1answer
103 views
Type definitions with open unions
1) I have an open union defined as follows:
type 'a choice = [> `One | `Other ] as 'a
I then try to define a type choice_list:
type choice_list = choice list
which does not work. How does one ...
5
votes
2answers
87 views
Using open unions outside the module they were defined in
Why does this work fine?
module Account = struct
type account_type = Current of float | Savings of float
end
let sarah = Account.Current 100.0;;
While the final line in the following produces ...
5
votes
2answers
188 views
Is it necessary to assign a default value to a variant returned from a Delphi function?
Gradually I've been using more variants - they can be very useful in certain places for carrying data types that are not known at compile time. One useful value is UnAssigned ('I've not got a value ...
5
votes
2answers
157 views
How to prune a Java program
Let's me start from what I want to do then raising some questions I have.
I want to develop a general Java program which is a superset of a number of programs (let's call them program variants). In ...
5
votes
4answers
391 views
boost::variant<T> to std::string
I have a boost variant of looking like this: typedef boost::variant<int, float, double, long, bool, std::string, boost::posix_time::ptime> variant;
I have a need for being able to convert any ...
5
votes
3answers
3k views
Why can't Delphi variants hold objects?
Why can't Delphi variants hold objects? More importantly, what's the reason behind this limitation?
5
votes
1answer
2k views
COM, VARIANT containing BSTR. Who allocates?
OK, so I couldn't really think of an apropos title that summarizes this.
The IPrintPipelinePropertyBag interface has the method AddProperty which aptly enough "adds a property to a property bag."
...
4
votes
3answers
120 views
Conversion system for variants
I have written a variant class, which will be used as the main type in a dynamic language, that will ultimately allow 256 different types of value (header is an unsigned byte, only 20 are actually ...
4
votes
4answers
421 views
check boost::variant<T> for null
I have a boost::variant in my program and I want to check if the variant itself is initialized and also if there is a value contained in one of it's types.
I've tried empty() on the variant, but that ...
4
votes
1answer
156 views
Make VarToDoubleAsString use Delphi settings (not OS settings)
When one assigns a Variant containing a string value to a floating point variable Delphi calls VarToDoubleAsString to do the conversion, which in turn uses the OS settings for decimal and thousand ...
4
votes
1answer
423 views
What is the difference between the VarIsEmpty and VarIsEmptyParam functions
Working in Delphi7 just now, I noticed that not only a VarIsEmpty function exists, but also a VarIsEmptyParam.
Since the help of Delphi does not give much explanation:
VarIsEmptyParam returns ...
4
votes
4answers
5k views
C++ Variant
I'm in the process of creating a class that stores metadata about a particular data source. The metadata is structured in a tree, very similar to how XML is structured. The metadata values can be ...
3
votes
4answers
166 views
Converting value of type <T> into Variant, is it possible?
here is a snippet showing what I am trying to achieve:
type
TMyObject<T> = class (TObject)
function GetVarType(Value: T): TVarType;
end;
function TMyObject<T>.GetVarType(Value: ...
3
votes
2answers
90 views
Does boost::variant work with std::string?
I've written a simple program in C++ with use of boost::variant. Program's code is presented below.
#include <string>
#include <iostream>
#include <boost/variant.hpp>
...
3
votes
2answers
315 views
Excel VBA: Variants in Array Variables
A question on variants. Im aware that variants in Excel vba are both the default data type and also inefficient (from the viewpoint of overuse in large apps). However, I regularly use them for ...
3
votes
3answers
151 views
how to return the number of dimensions of a (Variant) variable passed to it in VBA
Does anyone know how to return the number of dimensions of a (Variant) variable passed to it in VBA?
3
votes
2answers
307 views
How to convert c++ Variant to JSON?
How can I convert Variant to Java script object notation in (windows) c++?
I have a piece of hardware that returns a Variant which can contain an array(float), string or boolean data. All of variant ...
3
votes
1answer
483 views
How can I convert a string array to a variant array in VBscript?
I'm using a function in vbscript which returns a variant array of strings.
JobIDs = objDoc.ConnectedSubmit(objServer)
The problem is I can't get the Job ID values from that array, as vbscript ...
3
votes
1answer
339 views
C++ boost variant question
I know that boost::variant uses boost::mpl stuff behind it and has a mpl-compatible typedef types.
Let's say I have a simple typedef: typedef boost::variant<bool, int> Variant;
Now I have ...
3
votes
1answer
309 views
Old-school Pascal question about how to cast variant record function parameters properly
I am trying to create a function with a variant record-type parameter that allows inline-casting or assignment, as such:
type rectype = ( VT_INT, VT_CHAR, VT_BOOL );
rec = record
case t : ...
3
votes
1answer
270 views
How do I stop this Variant memory leak?
I'm using an old script engine that's no longer supported by its creators, and having some trouble with memory leaks. It uses a function written in ASM to call from scripts into Delphi functions, and ...
3
votes
1answer
445 views
Passing an object from C++ to C# though COM
hi have a COM visible API in C# which looks like the following:
public void DoSomething(string par1, string par2, object additionalParameter)
The idea is that based on the value of the string ...
3
votes
1answer
194 views
Null check on a COleVariant
Is it possible to do a null check on a COleVariant or at the very least check if it's type is set to VT_NULL? I see that there is a ChangeType() method but was hoping I could somehow figure out what ...
3
votes
3answers
436 views
Variant datatype library for C
Is there a decent open-source C library for storing and manipulating
dynamically-typed variables (a.k.a. variants)? I'm primarily interested in atomic values (int8, int16, int32, uint, strings, ...
3
votes
2answers
656 views
SCons: How to use the same builders for multiple variants (release/debug) of a program
The SCons User Guide tells about the usage of Multiple Construction Environments to build build multiple versions of a single program and gives the following example:
opt = Environment(CCFLAGS = ...
3
votes
2answers
135 views
Is there any C++ book that talks about how to implement variants?
Modern C++ design only gets me to typelists.
C++ templates the complete guide brings me only to tuples.
I want to learn how to _implement variants.
Does any C++ book explains this?
Thanks!
3
votes
13answers
1k views
Function which returns an unknown type
class Test
{
public:
SOMETHING DoIt(int a)
{
float FLOAT = 1.2;
int INT = 2;
char CHAR = 'a';
switch(a)
{
case 1: return INT;
case 2: return FLOAT;
case 3: return CHAR;
}
}
};
...
3
votes
2answers
672 views
Delphi: No VarIsBoolean( )-function?
In variants.pas, there is several VarIsXXX( )-functions for type-checking a variant. There is no VarIsBoolean( ), though.
What's your preferred way of checking if a variant is of type boolean?
2
votes
0answers
60 views
How can I get the underlying raw Variant value of a Delphi 6 indexed property that accesses that Variant?
I have a Delphi 6 class object that contains an array of 30 Variants, each of which is exposed via a different indexed property. For example:
property responseCode: integer
Index 7 read ...
2
votes
1answer
31 views
VarCmp returning 0x80020008 (Bad variable type)
I'm trying to compare two VARIANT values in VC++ using the VarCmp function:
VARIANT a;
VariantInit(&a);
a.vt = VT_UINT;
a.uintVal = 32;
VARIANT b;
VariantInit(&b);
b.vt = VT_UINT;
b.uintVal ...
2
votes
1answer
106 views
Return dynamic type
i know template like
T add(T)(T a, Tb){
return a + b;
}
But this need to user ask which type will be return, me i want compute inside mehtod which type will be returned like:
T getField( ...
2
votes
1answer
88 views
What are the pitfalls of using sql_variant?
I've read and heard several times that sql_variant should be avoided. I think I have a great use case for it. I've used varchar(max) in the past to store different types in the same column, but it ...
2
votes
1answer
126 views
Windows COM action invoke on UPNP
I'm working with COM UPnP. I'm trying to send SetAVTransportURI action to urn:upnp-org:serviceId:AVTransport. SetAVTransportURI requires 3 params:
InstanceID: 0
CurrentURI: ...
2
votes
1answer
218 views
How do I access late bound nested properties and methods?
I want to know what is the proper way to access a late bound property or method from Delphi when the property to access is nested inside another property. Let me explain.
Check this sample ...
2
votes
4answers
194 views
Short Strings in a Variant Record?
I'd like to be able to access sections of a short string as part of a record
Something like
TMyRecord = record
case Boolean of
True:
(
EntireString: String[20];
...
2
votes
2answers
119 views
Variant, Recursive Function and Type Inference
I'm very new at OCaml but worked all the past two days in order to get a good understanding of how to use it.
I've been doing a lot of thing lately but something is keeping me from moving forward.
...
2
votes
2answers
443 views
C++ - boost get question
Does someone know if the boost::get for the boost::variant is a performance-consuming operation or not.
Right now I am refactoring some old code in a performance-critical part, where "varianting" was ...
2
votes
4answers
171 views
COM method call fails in C#, VB.NET, but works in Python
I'm having trouble with a COM library I'm trying to use. I get an ArgumentException when I call a particular method and pass it null. This happens to me in both a C# project and a VB.NET project (I ...
2
votes
2answers
3k views
How to use variant arrays in Delphi
I have two Delphi7 programs: a COM automation server (EXE) and the other program which is using the automation server.
I need to pass an array of bytes from one program to the other.
After some ...
2
votes
2answers
875 views
visitor template for boost::variant
I would like to use a boost.variant<T0,T1,T2> as a parameter to a template 'Visitor' class which would provide visitor operators as required by the boost.variant visitor mechanism, in this case ...
2
votes
1answer
628 views
Iterator for boost::variant
Hy there,
I'm trying to adapt an existing code to boost::variant. The idea is to use boost::variant for a heterogeneous vector. The problem is that the rest of the code use iterators to access the ...
2
votes
3answers
2k views
Cast object as OleVariant in Delphi
Is there a way to pass a wrap and unwrap a TObject descendent in an OleVariant? I am trying to pass a TObject across automation objects. I know it's not a good idea but I don't have a good ...