1
vote
4answers
60 views
Reduce a set of functions over a value?
Hi,
I'm looking for a clean, idiomatic way to do a "backwards reduce" in Clojure.
I've got
(def fns '(fn1 fn2 fn3))
(def val 42)
I'd like to obtain (fn3 (fn2 (fn1 val))), an …
2
votes
2answers
41 views
How can I convert a LazySeq of Characters to a String in Clojure?
Let's say I have a LazySeq of java.lang.Character like
(\b \ \! \/ \b \ \% \1 \9 \/ \. \i \% \$ \i \space \^@)
How can I convert this to a String? I've tried the obvious
(Strin …
5
votes
4answers
148 views
Java key - key map
Hi,
I need a kind of map which is accessible in two directions, so with a key-key structure instead of key-value. Does this exist in Java? If not, what is the best way to create i …
2
votes
4answers
90 views
Can I use Perl’s map with an array slice?
I'm just trying to shorten a line of code that assigns HTML::Element->as_trimmed_text from an array of HTML::Elements to some variables - pretty standard stuff like:
my ($var1, va …
7
votes
3answers
169 views
Does Java have a HashMap with reverse lookup?
I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for thi …
0
votes
3answers
144 views
C++ How to find the biggest key in a std::map?
At the moment my solution is to iterate through the map to solve this.
I see there is a upper_bound method which can make this loop faster, but is there a quicker or more succinct …
1
vote
4answers
95 views
Adding elements to an STL Map in a constructors Initialization List?
I was wondering if this was possible, and if so how I'd go about doing so. If it's not possible I'll just have to add the elements during the constructor body.
Ideally I would li …
0
votes
0answers
29 views
Boost Serializing of Object containing Map (with object values) and Multimap (with std::string values): what is needed?
See below a main() and two very simple classes. Then per Boost serialization (and what is shown) my questions are:
1) Does class B need the normal overloaded stream insertion op …
0
votes
1answer
118 views
C++ operator[] syntax.
Just a quick syntax question. I'm writing a map class (for school).
If I define the following operator overload:
template<typename Key, typename Val> class Map {...
Val* o …
0
votes
1answer
31 views
Development license for Google Maps
We are a software company developing a system using Google Maps for our customer internal use (commercial, with GPS device). I know that our customer need to have Google Maps premi …
-2
votes
3answers
42 views
help on integrating google map in iphone app
Hi, developer friends.
I am going to develop an app based on google map. In that locations will be displayed with markers or points near current location (point of interest). I ha …
0
votes
7answers
132 views
std::map, references, pointers and memory allocation
I am having a lil hard time with map and the valuetype allocation.
consider this simple class:
class Column {
private:
char *m_Name;
public:
// Overrides
const char * …
1
vote
1answer
57 views
BlackBerry and map based apps like Yelp and Google Map
This is a question-loaded post from someone who is just getting started with BB development. Any guidance is much appreciated.
How are map based BlackBerry apps such as Yelp an …
2
votes
4answers
84 views
How to use ReadWriteLock ?
Hello,
I'm the following situation.
At web application startup I need to load a Map which is thereafter used by multiple incoming threads. That is, requests comes in and the Map …
1
vote
7answers
171 views
C++ initialization question
let's say I have
std::map< std::string, std::string > m_someMap as a private member variable of class A
Two questions: (and the only reason I'm asking is because I came …
