Sha256: 99657c1525515b8ec98b163ce35454d75d9fd2328c32e06e865e01bf46b8ed62
Contents?: true
Size: 369 Bytes
Versions: 14
Compression:
Stored size: 369 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
14 entries across 14 versions & 2 rubygems