Tagged Questions

1
vote
5answers
75 views

what does union U look like in the memory?

enum Enums { k1, k2, k3, k4 }; union MYUnion { struct U{ char P; }u; struct U0 { char state; } u0; struct U1 { Enums e; …
2
votes
4answers
40 views

Good way to combine two List<T>s in .NET 2.0?

I have two lists I need to form the union of, but I'm in .NET 2.0 so the Union() method appears to be out. These are lists of integers, so no problem with the equality comparisons …
2
votes
2answers
38 views

problem with quadTree & union

hi! i have the following quadtree-like structure, in which each cell can either be a inner node or a leaf. if it is a leaf, it can store a color. if it is a inner node, it stores …
1
vote
6answers
268 views

Why does my object take up 64 bytes and not 32?

I have a class that goes like this: class myType { union { float data[4]; other_vector4_type v } ; typedef union { float data[4]; other_vector4_type …
0
votes
3answers
46 views

Merge/Join 2 jQuery sets

Look at this code for example $div = $('#my div'); $ul = $('#somewhere ul'); How can I perform a jQuery method on both of them? For example, would this work? What is best pract …
0
votes
3answers
92 views

Getting Union, Intersection, or Difference of Sets in C++

I have a couple questions about how to use C++ sets (std::set) Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own fun …
0
votes
1answer
84 views

SQL join optimalization (get rid of UNION)

Hi, 1st disclaimers: I'm not a programmer, never was had never been taught "higher" math despite the upper statements sometimes I have to work with SQL. Now I need to create a …
0
votes
2answers
31 views

.Net class generation from XSD with union

I've been working to create classes representing the HR-Xml 3 spec for the stand-along packages related to Screening. I've had a couple of problems, but currently I believe the ma …
3
votes
2answers
46 views

Advanced indexing involving OR-ed conditions (pgsql)

I'm starting to get a much better grasp on PostgreSQL indexing, but I've run into an issue with the OR conditional, where I don't know how to go about optimizing my indexes for a f …
1
vote
3answers
66 views

What is the difference between structures containing bool vs uint when using PInvoke?

Ok, I'm now very confused. After my last question had several people comment about changing bool to uint I verified they are the same size by: Console.WriteLine("sizeof bool …
0
votes
3answers
92 views

how to use group by with union in t-sql

hi all, how can i using group by with union in t-sql? i want to group by the first column of a result of union, i wrote the following sql but it doesn't work. i just don't know how …
3
votes
8answers
215 views

Portability concerns on C struct/union

Supposing I have the following type from an external library: union foreign_t { struct { enum enum_t an_enum; int an_int; } header; struct { do …
1
vote
5answers
88 views

What am I doing wrong with this use of StructLayout( LayoutKind.Explicit ) when calling a PInvoke struct with union?

The following is a complete program. It works fine as long as you don't uncomment the '#define BROKEN' at the top. The break is due to a PInvoke failing to marshal a union correc …
3
votes
2answers
109 views

rails union hack, how to pull two different queries together

I have a query which searches two separate fields in the same table... looking for locations which are most likely a specific city, but could also be a country... ie the need for t …
0
votes
9answers
148 views

What kind of SQL join is this?

Say for some reason I have employees in two separate tables, employee1 and employee2 I just want to add them together, as if they are stacked on top of each other. something like …

1 2 3 4 5 8 next
15 30 50 per page