You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exception if the series does not contains the index.
355
370
*/
356
-
auto refget(Index)(Index moment, lazyException exc = null) inout
371
+
auto refget(Index)(Index moment) inout
372
+
{
373
+
staticimmutable defaultExc = newException(Unqual!Index.stringof ~"-"~ Unqual!(typeof(_data[size_t.init])).stringof ~" series does not contain required index." );
374
+
returnget(moment, defaultExc);
375
+
}
376
+
377
+
/// ditto
378
+
auto refget(Index)(Index moment, lazyconstException exc) inout
0 commit comments