Tagged Questions
The library-design tag has no wiki summary.
27
votes
5answers
423 views
Where are the readonly/const in .NET?
In C++ you'll see void func(const T& t) everywhere. However, i havent seen anything similar in .NET. Why?
I have notice a nice amount of parameters using struct. But i see no functions with ...
12
votes
13answers
1k views
Is requiring a certain order for #includes in c++ a sign of bad library/header design?
I've used some very large scale systems and never seen a required order, but came across it recently. Does the STL or STD library or even Boost have any cases where certain includes must come in a ...
11
votes
9answers
828 views
Writing a library with C and C++ interfaces, which way to wrap?
When preparing a library (let's call it libfoo), I find myself presented with the following dilemma: do I write it as a C++ library with a C wrapper:
namespace Foo {
class Bar {
...
};
}
/* ...
9
votes
2answers
259 views
What's the purpose of Function.const?
It is in ScalaDoc but without much documentation. It seems that it always returns the first parameter.
Function.const(1)(2) for instance returns 1.
Why does it exist and why is it useful?
7
votes
2answers
117 views
val or object for immutable, final singleton object
Which solution should be generally preferred, considering that the change is source compatible?
This
object Foo {
val Bar = new Baz(42, "The answer", true)
}
or this?
object Foo {
object Bar ...
7
votes
5answers
363 views
The mechanics of extension via free functions or member functions
Loads of C++ libraries, the standard included, allow you to adapt your objects for use in the libraries. The choice is often between a member function or a free function in the same namespace.
I'd ...
6
votes
2answers
52 views
Why is 'this' in jquery chaining callbacks a DOM element?
So I know that when using $.fn.each, $.fn.bind, etc, it is standard for the this keyword within jQuery chaining callbacks to be a DOM element.
I know in my development at least I usually want the DOM ...
6
votes
1answer
114 views
What's the purpose of $scope in scala.Predef?
scala.Predef contains the following code:
// Apparently needed for the xml library
val $scope = scala.xml.TopScope
Did someone figure out why it is necessary, considering that it creates ...
6
votes
1answer
2k views
Why does std::fstream set the EOF bit the way it does?
I recently ran into a problem caused by using fstream::eof(). I read the following line from here:
The function eof() returns true if the end of the associated input file has been reached, false ...
5
votes
4answers
273 views
An Object that returns an instance of itself
Background: My latest project cannot use a large library, which saddens me. There are a few things that I would like to have from any library such as the missing functions addClass, hasClass, ...
4
votes
6answers
201 views
Why is the java.lang.Thread class in Java not marked final by the designers?
What is the essence of allowing the user to create thread by extending the Thread class when we can achieve the same functionality by implementing Runnable and pass it to the Thread constructor. Also ...
4
votes
2answers
193 views
How should I build a simple database package for my python application?
I'm building a database library for my application using sqlite3 as the base. I want to structure it like so:
db/
__init__.py
users.py
blah.py
etc.py
So I would do this in ...
3
votes
1answer
68 views
Why does RegexTest have a main method?
I wonder why scala.util.parsing.combinator.testing.RegexTest has a main method.
Aren't library classes intended to be called from within the program and not run separately as an independent ...
2
votes
2answers
70 views
instantiating a free template function within a template class
I need to instantiate a free template function (FTF) within a template class (TC). The FTF takes as a template parameter one of the template parameters of the TC. The TC also holds generic pointers to ...
2
votes
3answers
237 views
Architecture of some reusable code
I am writing a number of small, simple applications which share a common structure and need to do some of the same things in the same ways (e.g. logging, database connection setup, environment setup) ...
1
vote
3answers
113 views
Reusable Class Library - INotifyPropertyChanged
I am developing a WPF application in which it will reference a class library that contains mostly business objects and some methods to manipulate those objects. Since this library is being used in ...
0
votes
0answers
162 views
boost::asio and boost::bind errors
This questions is a bit annoying, I can't get the following code to compile. You will have to compile the code below.
I am having some trouble with boost asio, I am trying to abstract the logic of ...
0
votes
3answers
81 views
Is there a de facto standard to identify HTML elements for a JavaScript library to attach to?
I'm creating a JavaScript library. This library will attach itself to one or more div's in an HTML doc. I'd like to attach automatically to make it easy for users to integrate the library. Is there a ...
0
votes
0answers
99 views
is it possible to design a better collections library than stl for c++? [closed]
the title says it all...
now answer!