Simple structure to safely access data from an associative array.
// request.cookie returns a SafeAccess!string// get a cookie named "user", default to "anonymous"autouser = request.cookie.read("user", "anonymous");
// Access the underlying AAautodata = request.cookie.data;
foreach(k,v; data) info(k, " => ", v);
Simple structure to safely access data from an associative array.