Tagged Questions
4
votes
2answers
191 views
Checking in D if a string is in array?
How do I check for a string occurance in an array? I mean sure I can loop, but is there a standard function?
at first I did:
if(str in ["first", "second", "third"])
but it complained that in only ...
1
vote
1answer
27 views
How to encapsulate an existing array using D2's phobos std.range
I would like to encapsulate an existing data array ( created by Python's Numpy Lib ) into an Array like object in the D2 Language... without having to copy the array data... I already use Python's ...