¡@

Home 

c++ Programming Glossary: sgi

splice() on std::list and iterator invalidation

http://stackoverflow.com/questions/143156/splice-on-stdlist-and-iterator-invalidation

splice moves a single element from one list to the other. SGI's documentation explicitly states that all iterators including.. being spliced. splicing in practice works as defined by SGI but I get assertion failure dereferencing invalid iterator in.. has made an extremely unhelpful change to the original SGI's specification. How can I work around this problem Or should..

C++ STL containers: what's the difference between deque and list?

http://stackoverflow.com/questions/1436020/c-stl-containers-whats-the-difference-between-deque-and-list

this question From the dated but still very useful SGI STL summary of deque A deque is very much like a vector like..

What are the Complexity guarantees of the standard containers?

http://stackoverflow.com/questions/181693/what-are-the-complexity-guarantees-of-the-standard-containers

between the different types of container Working from the SGI Page I have come up with this Container Types Container Forward..

Thread safety of std::map for read-only operations

http://stackoverflow.com/questions/1846186/thread-safety-of-stdmap-for-read-only-operations

link http www.sgi.com tech stl thread 5Fsafety.html The SGI implementation of STL is thread safe only in the sense that.. to shared containers category. Note this is true for the SGI implementation. You need to check if you use another implementation...

In STL maps, is it better to use map::insert than []?

http://stackoverflow.com/questions/326062/in-stl-maps-is-it-better-to-use-mapinsert-than

there was a technical reason such as efficiency. The SGI STL reference simply says Strictly speaking this member function..

Rules for Iterator Invalidation

http://stackoverflow.com/questions/4114503/rules-for-iterator-invalidation

the iterator points to does not invalidate the iterator. SGI provides good documentation on this. share improve this answer..

What's this STL vs. “C++ Standard Library” fight all about? [closed]

http://stackoverflow.com/questions/5205491/whats-this-stl-vs-c-standard-library-fight-all-about

Standard Library instead of the parts that were taken from SGI STL. ... it refers to the STL despite the fact that very few.. very few people still use the STL which was designed at SGI . Parts of the C Standard Library were based on parts of the.. to the bits of the stdlib that happen to be based on the SGI STL. People think it's the entire standard library. It gets..

What is the point of STL Character Traits?

http://stackoverflow.com/questions/5319770/what-is-the-point-of-stl-character-traits

of STL Character Traits I notice that in my copy of the SGI STL reference there is a page about Character Traits but I can't..

Is std::string part of the STL?

http://stackoverflow.com/questions/5972546/is-stdstring-part-of-the-stl

the real containers but in a distinct category. However on SGI's STL site basic_string and consequently the string typedef.. are varying definitions of the STL including The actual HP SGI STL the original library parts of which the C Standard Library.. The parts of the C Standard Library that were based on the SGI STL library containers iterators and algorithms. Still no strings...

Accessing inherited variable from templated parent class

http://stackoverflow.com/questions/605497/accessing-inherited-variable-from-templated-parent-class

6 7 7.1 8 and 9 accept it as do at least older Intel and SGI c compilers. Do the new Gnu C compiler obey the standard or..

Why does the C++ map type argument require an empty constructor when using []?

http://stackoverflow.com/questions/695645/why-does-the-c-map-type-argument-require-an-empty-constructor-when-using

question This issue comes with operator . Quote from SGI documentation data_type operator const key_type k Returns a..

Is stl vector concurrent read thread-safe?

http://stackoverflow.com/questions/7455982/is-stl-vector-concurrent-read-thread-safe

object. GCC Documentation says We currently use the SGI STL definition of thread safety which states The SGI implementation.. the SGI STL definition of thread safety which states The SGI implementation of STL is thread safe only in the sense that..

What is the default constructor for C++ pointer?

http://stackoverflow.com/questions/936999/what-is-the-default-constructor-for-c-pointer

to NULL pointer if new item is added to the map The SGI docs say this data_type operator const key_type k Returns a..