author-avatar
Jesse Phillips

Senior Quality Assurance (SDET) ¶ Avid hobby D programmer ¶ Telling people what to do because I am right.

2 Following
1 Followers

Skip The First Line Of A File In D

There are actually a number of ways to do this, which can depend on your objectives. I want to leave...

1
0

Map Reduce In D

I didn't want to confuse function mapping and dictionaries, so I decided to include reduce. map is a...

0
0

Split, Apply, Merge In D

I wanted to find Groupby, a means to iterate a list in groups (lists of lists). In that search I came...

0
0

Check Dictionary Has Key In D

I'll just take the example from adding to a Dictionary. string[int][string] data; if("hello"!in dat...

0
0

Filter A Dictionary In D

This wasn't so much about filtering the content, but instead having a list of dictionaries and filter...

0
0

Add To A Dictionary In D

Dictionary, hash table, associative array, map it has many names. The main challenge with dictionary...

0
0