Logo

Programming-Idioms

  • Ruby
  • C#
struct Point
{
    public double x;
    public double y;
};

A struct avoids heap allocation, which can be important in many applications that are doing extensive calculations on x/y coordinates.
(double x, double y)

The simplest form in C# is a tuple.
record Point(double x, double y);

If heap allocation isn't a problem, and a named type is needed, then the record syntax can be used to define a class with minimal boilerplate
Point = Struct.new(:x, :y)

Instantiate like this : Point.new(1.0,1.0)
type Point is
   record
      X : Float;
      Y : Float;
   end record;

New implementation...
< >
programming-idioms.org