TR1 - C++ Technical Report 1, proposed extensions to the C++ standard library

learn more… | top users | synonyms

2
votes
1answer
104 views

C++ how to handle tr1 and non-tr1 namespaces in portable code?

Is there a canonical way to deal with the namespace issues that arise when trying to maintain portable code between a TR1 and non-TR1 toolchain? I have a VC++2010 project that #include ...
2
votes
1answer
75 views

Nesting a tr1::bind<> object from tr1::bind() in a new call to tr1::bind()

I'm a little confused why this call to bind doesn't work. I've narrowed the problem down to trying to nest a bind object in a new call to bind. #include <iostream> #include <algorithm> ...
2
votes
1answer
311 views

How to convert string to regex literal

What's the best way to escape an arbitrary std::wstring for use inside a regular expression? For example, convert you owe me $ to you owe me \$? My scenario: I want to use a std::tr1::wregex to ...
1
vote
1answer
278 views

unordered_multimap::equal_range slow

I would expect unordered_multimap::equal_range to be in average constant complexity, however the following does not scale linearly with n as expected: #include <iostream> #include ...
1
vote
1answer
669 views

std::tr1::function assignment and binding

I'm trying to learn how to best use the std::function and the std::bind facilities in the standard library - I'm interested in the TR1 versions, as that's what I have available for now and I'm not ...
1
vote
1answer
297 views

Workaround to allow tr1::function to swallow return values

As a follow-up to Can tr1::function swallow return values?, how can one work around the limitation that tr1::function cannot swallow return values? This should work in the specific case of swallowing ...
1
vote
1answer
108 views

.NET Interop and TR1 shared_ptr

How is it possible to marshal a shared_ptr from unmanaged C++ code into C#? I have a function in C++ (exposed through C bindings) that will allocate a new MyObject and return a pointer to it via a ...
0
votes
1answer
147 views

Random engine state and multiple deterministic independent random sequences

The C++ TR1 random number generation scheme has improved the old C runtime library in terms of keeping a separate state for random engines in different threads, or for independent random sequences. ...
0
votes
1answer
169 views

tr1's bind on map container with a member function (yikes!)

I am having problems with the following functions: typedef std::tr1::shared_ptr<Island> Island_sp_t; typedef map<string, Island_sp_t>::value_type island_map_pair; ...
0
votes
1answer
216 views

Regex pattern help wanted

The raw string is like this: {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\froman\fcharset0 Times New Roman;}{\f1\fnil\fcharset0 MS Shell Dlg 2;}} ...
2
votes
0answers
667 views

Has Visual Studio 2010 TR1 Regular Expression Syntax Changed?

I am maintaining a program that uses TR1 regular expressions to evaluate user input for device settings. I have just switched the build environment for this program from visual studio 2008 to visual ...
1
vote
0answers
145 views

Microsoft's <regex> level of Unicode support?

What's the std::wregex Unicode support look like for Microsoft Visual C++ 2010? Does it support Unicode character classes? [:Nd:] and such. Support of collations such as digraphs? [.ae.] and such. ...
0
votes
0answers
71 views

Tokenize with colon using std::tr1::regex

I'm working on a quasi-SCPI command parser and I want to split a string based on colons, ignoring quoted strings. I want to get an empty string if there is no text between colons. If I use this ...
0
votes
0answers
230 views

How does TR1 regex handle Turkish-I problem?

For those who are not familiar with the Turkish-I problem, here is an article. http://msdn.microsoft.com/en-us/library/ms973919.aspx#stringsinnet20_topic5 For example, if I try to use the regex ...