Search

August 11, 2014
Learn »
...expose the nodes as that smells of a leaking abstraction. Hiding the nodes make it...
August 11, 2014
Learn »
...implementation here

		auto byNode() {
			return ... /* range over nodes */
		}

		auto byData() {
			return ... /* range over data */
		}
	}

	LinkedList...
August 11, 2014
Learn »
...the data stored within the nodes or the entire nodes themselves? Different languages do this...
August 11, 2014
Issues »
...this keep working by simply letting removed nodes still
reference their neighbors:
1. We have...
August 06, 2014
Learn »
...much.

I have a lot of Bs (nodes in a graph). They compute some things...
August 06, 2014
Learn »
...static struct Impl
	{
		Entry*[] buckets;
		size_t nodes;
		TypeInfo _keyti;
		Entry*[4] binit;
		
		@property const...
August 06, 2014
Learn »
...is good in order to have polymorthic nodes with different methods and properties).

Of course...
August 06, 2014
Learn »
...OK. I have en entire graph, whose nodes are Bs inside A. So that might...
August 04, 2014
Learn »
...access to all the information (parent nodes, sibling nodes, even far way) whereas when doing...
August 03, 2014
Learn »
...it or should I walk around all nodes for somehow and generate code for them...
46 47 48 49 50 51 52 53 54 55 56 57
Next ›   Last »