Sha256: 6c85df8974550f6fcc2d9b20a47f59af81369b40a575d240c5fc8727ccfb7ea5
Contents?: true
Size: 368 Bytes
Versions: 16
Compression:
Stored size: 368 Bytes
Contents
/* Example code - use without restriction. */ Layout_Person := RECORD UNSIGNED1 PersonID; STRING15 FirstName; STRING25 LastName; END; allPeople := DATASET([ {1,'Fred','Smith'}, {2,'Joe','Blow'}, {3,'Jane','Smith'}],Layout_Person); somePeople := allPeople(LastName = 'Smith'); // Outputs --- somePeople;
Version data entries
16 entries across 16 versions & 2 rubygems