www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Tuple!(string, int))[] field_orders

reply Ozan <mobbel.alerts gmail.com> writes:
Hi
In vibe.d / data / mongo / collection  I found the function
* ensureIndex(Tuple!(string, int))[] field_orders)

What could be the right way to use "Tuple!(string, int))[] 
field_orders"?
I tried different ways like [Tuple!("a", 1), Tuple!("b", 2)]", 
but compiler said "No"

Any hint?

Thanks & Regards,
Ozan
Mar 14 2019
parent Andrea Fontana <nospam example.org> writes:
On Thursday, 14 March 2019 at 15:29:28 UTC, Ozan wrote:
 Hi
 In vibe.d / data / mongo / collection  I found the function
 * ensureIndex(Tuple!(string, int))[] field_orders)

 What could be the right way to use "Tuple!(string, int))[] 
 field_orders"?
 I tried different ways like [Tuple!("a", 1), Tuple!("b", 2)]", 
 but compiler said "No"

 Any hint?

 Thanks & Regards,
 Ozan
field_orders' type: Tuple!(string, int)[] So you have to use [Tuple!(string, int)("b",2), ...] or (shortcut) [tuple("b", 2), ...] Andrea
Mar 14 2019