Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

60
votes
12answers
2k views

What are the C functions from the standard library that must / should be avoided?

I've read on stackoverflow that some C functions are 'obsolete' or should be 'avoided'. Can you please give me some examples of this kind of functions + the reason why. What alternatives of those ...
37
votes
3answers
9k views

Read whole ASCII file into C++ std::string

I need to read a whole file into memory and place it in a C++ std::string. If I were to read it into a char, the answer would be very simple: std::ifstream t; int lenght; t.open("file.txt"); // ...
35
votes
15answers
2k views

Which functions in the C standard library commonly encourage bad practice?

This is inspired by this question and the comments on one particular answer in that I learnt that strncpy is not a very safe string handling function in C and that it pads zeros, until it reaches n, ...
21
votes
5answers
1k views

What does the “c” mean in cout, cin, cerr and clog?

What does the "c" mean in the cout, cin, cerr and clog names? I would say char but I haven't found anything to confirm it.
21
votes
17answers
2k views

Most useful Python modules from the standard library?

I am teaching a graduate level Python class at the University of Paris, and the students need to be introduced to the standard library. I want to discuss with them about some of the most important ...
19
votes
7answers
475 views

Real world use-case for the `at()` indexing function in the C++ std library?

C++'s container vector, deque, ... provide the at(index) accessor function in addition to operator[index] to access container elements. The difference between this member function and member ...
18
votes
9answers
3k views

Why isnt int pow(int base, int exponent) in the standard C++ libraries?

I feel like I must just be unable to find it. Is there any reason that the c++ pow function does not implement the "power" function for anything except floats and doubles? I know the implementation ...
16
votes
7answers
1k views

How can I tell if a Perl module is core or part of the standard install?

How can I check if a Perl module is part of the core - i.e. it is part of the standard installation? I'm looking for: a command-line command: a Perl subroutine/function to check within code ...
15
votes
4answers
176 views

How to flatten a list to a list without coercion?

I am trying to achieve the functionality similar to unlist, with the exception that types are not coerced to a vector, but the list with preserved types is returned instead. For instance: ...
13
votes
1answer
575 views

What new Unicode functions are there in C++0x?

It has been mentioned in several sources that C++0x will include better language-level support for Unicode(including types and literals). If the language is going to add these new features, it's only ...
13
votes
6answers
3k views

Standard library function in R for finding the mode?

In statistical language R, mean() and median() are standard functions which do what you'd expect. mode() tells you the internal storage mode of the R object, not the value that occurs the most in its ...
13
votes
8answers
854 views

Where to find algorithms for standard math functions?

I'm looking to submit a patch to the D programming language standard library that will allow much of std.math to be evaluated at compile time using the compile-time function evaluation facilities of ...
12
votes
4answers
410 views

Alternative implementations of Haskell's standard library type classes

I've seen many people complaining about some of the type classes from the standard library saying things like "Monad should require Functor" or even "Monad should require Applicative", "Applicative ...
10
votes
2answers
210 views

How library functions in Haskell are implemented

I'm just starting to learn Haskell and would find it very helpful to see how Haskell functions are implemented. I've been able to find the Standard Prelude on different question, but I'm now ...
10
votes
3answers
301 views

Which Scala methods return null instead of an Option and why?

I wonder if the standard library is completely null-free and - if not - would be interested what reasonable use-cases exist where returning null is preferable to returning some Option instance.
10
votes
4answers
196 views

Is the term “libc” equivalent to “C standard library”?

I sometimes hear people using the terms "libc" and "C standard library" interchangeably. I understand that "libc" is the name (or part of the names) of many popular C standard library implementations. ...
10
votes
6answers
366 views

Alternative ways to browse the python api

Is it just me, or the python standard library documentation is extremely difficult to browse through? http://docs.python.org/3.1/library/index.html http://docs.python.org/3.1/modindex.html Java ...
9
votes
2answers
133 views

Going through the source code for the prelude brings up weirdness

I was looking for the definition of seq and came across this wierdness. Why do all these functions have the same/similar definitions? seq :: a -> b -> b seq = let x = x in x inline :: a -> ...
9
votes
8answers
302 views

Why should not I subclass/inherit standard containers?

I often read this statements on SO. Personally, I don't find any problem with this, unless I am using it in polymorphic way; i.e. where I have to use virtual destructor. If I want to extend/add the ...
9
votes
3answers
1k views

When is #include <new> library required in C++?

According to this reference entry for operator new ( http://www.cplusplus.com/reference/std/new/operator%20new/ ) : Global dynamic storage operator functions are special in the standard ...
9
votes
8answers
1k views

Does C or C++ have a standard regex library?

Does it? If yes, where can I get the documentation for it... if not, then which would be the best alternative?
9
votes
4answers
580 views

What is the current status of D standard libraries?

There are two of them Phobos and Tango. As far as I know they are redundant and incompatible. Are there any plans to join them? If so, when will it happen?
9
votes
7answers
4k views

trim is not part of the standard c/c++ library?

Is it me or are there no standard trim functions in the c or c++ library? is there any single function that acts as a trim? If not can anyone tell me Why trim is not part of the standard library? (i ...
8
votes
7answers
556 views

What language are the C and C++ standard libraries written in?

C and C++ by themselves can't actually do anything, they need the libraries to work. So how were the libraries created? Assembly language?
8
votes
5answers
321 views

C / C++ equivalents to the Python Standard Library

I depend heavily on Python's standard library, both for useful data structures and manipulators (e.g., collections and itertools) and for utilities (e.g., optparse, json, and logging), to skip the ...
8
votes
3answers
1k views

C++ fstream << and >> operators with binary data

I've always read and been told that when dealing with binary files that one should use read() and write() as opposed to the << and >> operators as they are meant for use with formatted ...
7
votes
4answers
188 views

How to simulate the nonexistent find_first_not_of function?

The std::basic_string class template has member functions find_first_of and find_first_not_of. The <algorithm> header, however, contains only a generic find_first_of. Question1: Is the ...
7
votes
4answers
189 views

So where can I find the best online C++ Standard Library reference?

You know, with comments and examples and stuff. Need a quick reference for when coding.
7
votes
3answers
154 views

Requirements on standard library allocator pointer types

I am trying to write a quadtree sparse matrix class. In short, a quadtree_matrix<T> is either the zero matrix or a quadruple (ne, nw, se, sw) of quadtree_matrix<T>. I'd like eventually to ...
7
votes
3answers
469 views

Do Standard Library (STL) Containers support a form of nothrow allocation?

The new operator (or for PODs, malloc/calloc) support a simple and efficient form of failing when allocating large junks of memory. Say we have this: const size_t sz = ...
7
votes
6answers
194 views

Would this optimization in the implementation of std::string be allowed?

I was just thinking about the implementation of std::string::substr. It returns a new std::string object, which seems a bit wasteful to me. Why not return an object that refers to the contents of the ...
7
votes
3answers
222 views

Are all functions in the c++ standard library required have external linkage?

So I've got an app which compiles fine on windows, linux and a few variations of unix. I recently decided to port it to OSX when I ran into a snag. I have a template which looks like this: ...
7
votes
6answers
181 views

What are the “standard framework” code that we should build?

We are in a situation whereby we have 4 developers with a bit of free time on our hands (talking about 3-4 weeks). Across our code base, for different projects, there are a number of framework-y type ...
7
votes
5answers
1k views

Python's standard library - is there a module for balanced binary tree?

Is there a module for AVL or Red-Black or some other type of a balanced binary tree in the standard library of Python? I have tried to find one, but unsuccessfully (I'm relatively new to Python).
7
votes
4answers
163 views

Is it a good idea to use undocumented public code from the Python standard library?

For instance, in multiprocessing.managers there is a function called MakeProxyType. This function isn't in the multiprocessing documentation at all, but its name doesn't begin with an underscore ...
6
votes
1answer
128 views

Function to map Maybes to a monad

I often use expressions of the form maybe (return ()) someFunc someMaybe. Searching for a function Monad m => (a -> m ()) -> Maybe a -> m () on hoogle doesn't yield a specific result. ...
6
votes
5answers
149 views

What's the equivalent of cout for output to strings?

I should know this already but... printf is to sprintf as cout is to ____? Please give an example.
6
votes
6answers
1k views

How to workaround the inconsistent definition of numeric_limits<T>::min()?

The numeric_limits traits is supposed to be a general way of obtaining various type infomation, to be able to do things like template<typename T> T min(const std::vector<T>& vect) { ...
5
votes
2answers
90 views

Thread-safety of C standard library on OS X

Is there a definitive list of functions that are thread-safe in Mac OS X's implementation of the C standard library? There is a good answer here with regards to glibc and f*() functions specifically, ...
5
votes
3answers
132 views

Strange bug in usage of abs() I encountered recently

I have C++/C mixed code which I build on a) Visual C++ 2010 Express(Free version) on Win-7 x32. b) Cygwin/Gcc environment installed on a Windows-7 Home premium edition x32. The gcc version 3.4.4 ...
5
votes
2answers
149 views

Is there a standard library solution to this Haskell problem?

I want to use Data.List.groupBy to group a list of tuples based on the equality of the snd element. I could do this: groupBy (\l r -> snd l == snd r) listOfTuples But it strikes me as too much ...
5
votes
2answers
128 views

Template Specialization VS Function Overloading

A textbook I have notes that you can provide your own implementation for standard library functions like swap(x,y) via template specialization for function overloading. This would be useful for any ...
5
votes
3answers
194 views

random_shuffle algorithm - are identical results produced without random generator function?

If a random generator function is not supplied to the random_shuffle algorithm in the standard library, will successive runs of the program produce the same random sequence if supplied with the same ...
5
votes
3answers
108 views

python: where is a true built-in file object required?

From the python docs on urllib.urlopen(), talking about the file-like object the function returns on success: (It is not a built-in file object, however, so it can’t be used at those few places ...
5
votes
2answers
297 views

Should I consider memmove() O(n) or O(1)?

this may be a silly question, but I want to calculate the complexity of one of my algorithms, and I am not sure what complexity to consider for the memmove() function. Can you please help / explain ...
5
votes
4answers
671 views

SBCL standard library documentation?

I want to learn and use SBCL because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard ...
5
votes
5answers
1k views

How does memchr() work under the hood?

Background: I'm trying to create a pure D language implementation of functionality that's roughly equivalent to C's memchr but uses arrays and indices instead of pointers. The reason is so that ...
4
votes
2answers
113 views

Are there any standard exceptions?

I've been using throw new Exception("...") in my code, since I couldn't find anything else to use. I'm looking for things like C++'s out_of_range and logic_error classes. std.exception defines a ...
4
votes
3answers
199 views

High Level Data Structures in C [closed]

Possible Duplicate: C Analog To STL Oftentimes, when programming in C, I find myself wishing that I had access to something like the vector or list classes from C++, and I end up ...
4
votes
6answers
190 views

C without stdio, what is possible?

I've been interested in programming an operating system for some time. Delving through a few different sites, I've come across an interesting concept (to paraphrase): if you start writing your ...

1 2 3