Found element or null if could not find.
LinkedList!int list; scope(exit) list.free(); assert(list.find(42) is null); list.insertBack(13); list.insertBack(42); auto first = list.find(13); assert(first && first.datum == 13); auto second = list.find(42); assert(second && second.datum == 42); assert(list.find(0) is null);
Search for element with value v.