Difference between revisions of "DIP58"
Line 150: | Line 150: | ||
foreach (day; monday..friday) | foreach (day; monday..friday) | ||
− | work(day); | + | if (!vacation.contains(day)) |
+ | work(day); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:04, 17 March 2014
Title: | ".." as a Binary Operator |
---|---|
DIP: | 58 |
Version: | 1 |
Status: | Draft |
Created: | 2014-03-16 |
Last Modified: | 2014-03-16 |
Author: | Mason McGill |
Contents
Abstract
Making ".." a binary operator allows multidimensional indexing, terse range construction, and other features especially useful for scientific and engineering applications, while reducing language complexity and preserving backwards compatibility.
Rationale
One of D's design goals is to "cater to the needs of numerical analysis programmers". To that end, D already has some syntax to support MATLAB/Python/Julia/R-style multidimensional array manipulation: IndexExpression, SliceExpression, and "$". However, the ability to tersely express numeric ranges arguably makes languages like Julia more usable for "vectorized" numerical programming than D. Making ".." a binary operator would enable this functionality, and improve the usability of numerical APIs.
Proposal
Grammar
SliceExpression and ForeachRangeStatement are removed from the language. CaseRangeStatement remains unchanged.
Code in the form "Expression1 .. Expression2" is parsed as a ToExpression (a..b
can be read "a to b"). ".." has the lowest operator precedence of any binary operator.
Resolving ToExpression
A ToExpression is delegated to the arguments if they implement "opBinary" or "opBinaryLeft" for the ".." operator. Otherwise, it yields a structure that can be used in an IndexExpression or ForeachStatement to replicate the semantics of a SliceExpression or ForeachRangeExpression.
auto __evaluateToExpression(Left, Right)(Left left, Right right)
{
static if (__traits(compiles, left.opBinary!".."(right)))
return left.opBinary!".."(right);
else static if (__traits(compiles, right.opBinaryRight!".."(left)))
return right.opBinaryRight!".."(left);
else
return BoundedRange!(Left, Right)(left, right);
}
struct BoundedRange(Front, Back)
{
Front front;
Back back;
static if (is(typeof(front >= back) : bool))
bool empty() { return front >= back; }
static if (__traits(compiles, front++))
void popFront() { front++; }
/* Other range operations, if supported. */
/* If supported, an `opBinary` method is defined to allow strided
ranges to be created using "start..step..stop" syntax. */
}
This behavior can be changed in a non-backwards-compatible release to make ".." behave analogously to other binary operators (refusing to compile if a matching "opBinary" or "opBinaryRight" isn't defined).
Changes to the resolution of IndexExpression
An IndexExpression that would previously have been parsed as a SliceExpression first attempts to delegate to "opSlice". Failing that, it delegates to "opIndex". Index-assignment, index-op-assignment, and index-unary operations are handled analogously. This is similar to the route Python took when changing its indexing/slicing semantics.
auto __evaluateIndexExpression(Base, Indices...)(Base base, Indices indices)
{
enum is0ArgSlice = !indices.length;
enum is2ArgSlice = is(indices[0] == BoundedRange!(F, B), F, B);
static if (is2ArgSlice)
auto front = indices[0].front, back = indices[0].back;
static if (is0ArgSlice && __traits(compiles, base.opSlice())
return base.opSlice();
else static if (is2ArgSlice && __traits(compiles, base.opSlice(front, back))
return base.opSlice(front, back);
else
return base.opIndex(indices);
}
These changes can be reverted in a non-backwards-compatible release to drop support for the "opSlice*" family of functions.
Usage
Multidimensonal Slicing
const submatrix = matrix[0..5, 1..3];
matrix[0..5, 1..3] *= 2;
Strided Slicing/Iteration
const oddEntries = vector[0..2..10]; // Built-in.
const evenEntries = vector[(1..11).by(2)]; // Library-defined.
writeln(array(0..2..10)); // Prints [0, 2, 4, 6, 8].
Slice Forwarding
auto addSlices(A, B, Indices...)(A a, B b, Indices indices)
{ return a[indices] + b[indices]; }
addSlices(matrix1, matrix2, 0..3, 1..4);
This is especially important for wrapping/subclassing sophisticated multidimensional data structures.
Terse Constant Declaration
enum size = [150.cm .. 200.cm, 25.cm .. 50.cm];
enum orientation = -30.deg .. 30.deg;
detectPedestrians(size, orientation);
Defining Multidimensional Grids
const inputSpace = meshgrid(0..100, 0..100);
plot(inputSpace, someFunction(inputSpace));
meshgrid
, as implemented in MATLAB and NumPy, constructs a multidimensional range from a list of 1-dimensional ranges.
Simulating Physics
const line = Point(1, 2, 3)..Point(3, 2, 1);
const bounds = Box(1..3, 2..4, 3..6);
const collision = bounds.contains(line);
Parsing Text
const letters = 'a'..'z';
const numbers = '0'..'9';
find(letters ~ numbers, userInput);
Handling Dates/Times
const vacation = july(10, 2014)..july(15, 2014);
foreach (day; monday..friday)
if (!vacation.contains(day))
work(day);
Copyright
This document has been placed in the Public Domain.