Tagged Questions

A record in programming is a product data type with labels to access fields of the product.

learn more… | top users | synonyms

45
votes
1answer
2k views

lenses, fclabels, data-accessor - which library for structure access and mutation is better

There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: data-accessor, fclabels and lenses. Personally I started with data-accessor and ...
44
votes
2answers
865 views

Multichannel USB recording with Java Sound API?

I'm trying to record/process some audio from three usb microphones with Java Sound on Snow Leopard (but can switch to Windows if it fixes things). Problem is, when I try to use the mixer that ...
30
votes
3answers
465 views

Choosing between a class and a record

Basic question: what design principles should one follow when choosing between using a class or using a record (with polymorphic fields) ? First, we know that classes and records are essentially ...
20
votes
1answer
318 views

What is this haskell syntax?

I just ran across the following syntax in a piece of Haskell code - data A = A Int Int | B m :: A -> Int m a = case a of A{} -> 1 _ -> 2 What is the A{} doing here? Does the {} ...
15
votes
4answers
4k views

How to simulate bit-fields in Delphi records?

I would like to declare a record in Delphi that contains the same layout as it has in C. For those interested : This record is part of a union in the Windows OS's LDT_ENTRY record. (I need to use ...
11
votes
3answers
704 views

Recommended macros to add functionality to Clojure's defrecord constructor?

defrecord in clojure allows for defining simple data containers with custom fields. e.g. user=> (defrecord Book [author title ISBN]) user.Book The minimal constructor that results takes only ...
11
votes
4answers
2k views

When should I use enhanced record types in Delphi instead of classes?

Delphi 2006 introduced new capabilities for records, making them more 'object-oriented'. In which situations is the record type more appropriate for a design than a class type? Which advantage does ...
9
votes
3answers
440 views

Deep copy of a record with R1:=R2, or Is there good way to implement NxM matrix with record?

I'm implementing a N x M matrix (class) with a record and an internal dynamic array like below. TMat = record public // contents _Elem: array of array of Double; // procedure ...
9
votes
2answers
656 views

F# - Record-type recursive member functions and the “rec” keyword

I've always believed that in F# we needed to use the rec keyword for every recursive function, for example: let rec factorial = function | 0 -> 1 | k when k > 0 -> k * (factorial (k - 1)) | ...
9
votes
7answers
4k views

Physical or Logical Delete of Database Record

What is the advantage of doing a logical delete of a record (i.e. setting a flag stating that the record is deleted) as opposed to actually or physically deleting the record? Is this common practice? ...
8
votes
2answers
265 views

Record methods and const parameters in Delphi

It looks like the Delphi compiler does not honor const record parameters when "records-with-methods" are involved. Having not tried to abuse the const convention previously, I was a little surprised ...
8
votes
2answers
188 views

Clojure record: how to get hinted type given an attribute name

I'm wondering is there a way to retrieve the type hinting associated with attributes declared with defrecord. e.g., if I have the following record definition: (defrecord Foo [^Integer id ^String ...
8
votes
4answers
558 views

Delphi 7 compared to 2009 (& 2010) Record sizes

I have a weird issue when converting code from Delphi 7 to 2010. It has to do with records. The record defined below, when sized in D7, is 432 bytes, and in D2009 (and 2010) it's 496. I know, that ...
8
votes
2answers
290 views

What's the syntax for including methods in a variant record?

I have the following record definition E3Vector3T = packed record public x: E3FloatT; y: E3FloatT; z: E3FloatT; function length: E3FloatT; function normalize: ...
7
votes
6answers
2k views

Delphi TList of records

Hi I need to store a temporary list of records and was thinking that a TList would be a good way to do this? However I am unsure how to do this with a TList and was wondering if this is the best was ...
7
votes
5answers
672 views

Free load test tool with browser recording

Is there any free load test tool which can record browser action, and then playback in a way of multiple virtual user? P.S. I am talking about the clicking of mouse in the browser, and also keyboard ...
7
votes
3answers
2k views

OSStatus error 1718449215

I have created an iPhone application to record our voice. When I try to record, I am getting error message in following statement. recorder = [[ AVAudioRecorder alloc] initWithURL:url ...
6
votes
0answers
98 views

Record syntax default value for accessor

As I was writing up an answer just now, I ran across an interesting problem: data Gender = Male | Female deriving (Eq, Show) data Age = Baby | Child | PreTeen | Adult deriving ...
6
votes
1answer
111 views

Haskell “dependent” fields of a record?

I've got the following record defined: data Option = Option { a :: Maybe String, b :: Either String Int } deriving (Show) Is there anyway for me to enforce that when a is Nothing, b ...
6
votes
2answers
305 views

Haskell: Record Update for Existential Types

I was trying to use record update for an existential record when I ran into an error. A quick google led me to feature request #2595, which shows it as implemented for GHC back in version 6.8.3. I'm ...
6
votes
3answers
416 views

F# record member evaluation

Why is t.b evaluated on every call? And is there any way how to make it evaluate only once? type test = { a: float } member x.b = printfn "oh no" x.a * 2. let t = { a = 1. } t.b t.b
6
votes
1answer
668 views

Audio recording and playback in Silverlight

I have a Silverlight 4 application that records user's voice through the mic. Now, as soon as the recording is completed, I need to play the recorded voice back to the user before posting it to the ...
6
votes
3answers
3k views

Delphi: Record constructor vs factory function

So what will be the preferred way of initializing records? With a 'factory function': TMyRecord = record valueX: integer; valueY: integer; end; function MyRecord(const AValueX, AValueY: ...
5
votes
1answer
88 views

record system sound (stereomix) to a file

iam trying to record sound from an activex WMP control playing an internet radio stream, and because no simple way to do it, i decided to record the system sound or the so called "what you hear" (the ...
5
votes
1answer
82 views

How to control export of records in Haskell?

With the following sample module: module Exp ( initial, myval ) where data State = State { i :: Int } initial = State { i = 123 } myval st = i st After I load the module in GHCI, I can see that the ...
5
votes
4answers
132 views

Can an Ada Variant Record be binary compatible to a C++ union?

I am designing a communication middleware for use in an application which has a module in Ada and many modules in C++ which communicates passing parameters (scalar values) and structures. The ...
5
votes
3answers
144 views

Modules and record fields

I have stumbled across a rather simple OCaml problem, but I can't seem to find an elegant solution. I'm working with functors that are applied to relatively simple modules (they usually define a type ...
5
votes
1answer
157 views

Delphi: Is it possible to enumerate all instances of a record (~typed constants) in the global namespace?

From the research I've done so far, I'm already guessing the answer is no but just to make sure... (also, this entry can be updated once support for this is available). The question title should ...
5
votes
3answers
311 views

Is it possible to save a record to a XML file without saving the fields seperately?

I have a big record which is consist of many fields with different types and also dynamic arrays. I want to save it to a file and then read it back. Imagine this simple record: TCustomRecord = Record ...
5
votes
2answers
316 views

Writing complex records to file

Hi I have defined some records in my project which may be consisted of other records and also dynamic arrays of normal data types and other records , it is n example of a record type Type1=record ...
5
votes
1answer
1k views

Simultaneous AVCaptureVideoDataOutput and AVCaptureMovieFileOutput

I need to be able to have AVCaptureVideoDataOutput and AVCaptureMovieFileOutput working at the same time. The below code works, however, the video recording does not. The ...
5
votes
2answers
587 views

Do I have to allocate and free records when using TList<T> in Delphi?

The question more or less says it all. Given the following record structure: type TPerson = record Name: string; Age: Integer; end; PPerson = ^TPerson; TPersonList = ...
5
votes
4answers
3k views

Haskell record syntax and type classes

Suppose that I have two data types Foo and Bar. Foo has fields x and y. Bar has fields x and z. I want to be able to write a function that takes either a Foo or a Bar as a parameter, extracts the x ...
5
votes
5answers
6k views

How do I record video from a webcam in MATLAB?

I would like to know how I can record a video in MATLAB with my webcam.
5
votes
5answers
4k views

How to record voice in a browser?

I need users to record their voice on a browser and then automatically upload the resulting mp3 to a webserver. I am thinking the user presses a big fat start record/stop record button to do this. ...
4
votes
2answers
138 views

Are there default values for record getters in Haskell?

There is unsurprisingly a run time exception thrown by the following code : data Necklace = InvalidNecklace | Necklace { necklace_id :: Int, meow :: Int, ... } necklace_id InvalidNecklace Is ...
4
votes
2answers
53 views

Two fields of two records have same label in OCaml

I have defined two record types: type name = { r0: int; r1: int; c0: int; c1: int; typ: dtype; uid: uid (* key *) } and func = { name: string; typ: dtype; params: var ...
4
votes
1answer
92 views

What operator do I overload when assigning an “Enhanced Record” to a normal “Data Type” variable?

I need to know, first and foremost, if what I'm trying to do is even possible. If it is possible, I then need to know how. It's far easier to demonstrate the problem rather than explain it so here ...
4
votes
2answers
141 views

Passing a method-containing record between host application and DLL

Is it possible (without the use of Runtime Packages or the Shared Memory DLL) to pass a Record type between the host application and a DLL module where the Record type contains Functions/Procedures ...
4
votes
3answers
123 views

Delphi - records with variant parts

I want to have a record (structure) with a 'polymorphic' comportment. It will have several fields used in all the cases, and I want to use other fields only when I need them. I know that I can ...
4
votes
2answers
107 views

Why do I get an “incompatible types” error even though I've made a record definition available to all units?

I am writing a Delphi 2010 application. It has many files, two of which are called Utils_ABS and Utils_MAT. I have created a record type that both files need to understand, so I put it in its own ...
4
votes
3answers
610 views

Simple read/write record .dat file

For some reason my OpenID account no longer exists even when I used it yesterday. But anyway. I need to save record data into a .dat file. I tried a lot of searching, but it was all related to ...
4
votes
2answers
2k views

Playing back sound coming from microphone in real-time

I've been trying to get my application recording the sound coming from the microphone and playing it back in (approximately) real-time, however without success. I'm using AudioRecord and AudioTrack ...
4
votes
3answers
270 views

erlang mnesia - illegal record info

I am trying to have a function that ensures the table I need is already created and if not to create it. Here's the sample: ensure_table_exists(Table, MnesiaTables, Nodes) -> case ...
4
votes
3answers
1k views

Detect and record a sound with python

I'm using this program to record a sound in python: http://stackoverflow.com/questions/892199/detect-record-audio-in-python/892293#892293 I want to change the program to start recording when sound ...
3
votes
2answers
44 views

Records with similar fields in OCaml

In this answer, the suggested way of "attaching" meta information to types was using a record: type _foo = ... and foo = {n:_foo; m:meta} but what if I have multiple types I'd like to wrap with ...
3
votes
3answers
125 views

Can record constructors make record constants more concise?

I have some tabular data: Foo Bar ------------- fooes 42 bars 666 ... So, I declare the entity structure: type TFoo = record Foo: string; Bar: Integer end; and the table of ...
3
votes
3answers
188 views

Nothing but “packed” records — should I fix it?

While reviewing some code in our legacy Delphi 7 program, I noticed that everywhere there is a record it is marked with packed. This of course means that the record is stored byte-for-byte and not ...
3
votes
1answer
148 views

Delphi (-XE) : casting to a record type with implicit conversion

I have a record type with methods, representing an specific hardware measurement type, read from the instrument as a string. The record contains implicit coversion to (and from) a string. If I cast a ...
3
votes
3answers
119 views

How to match ets:match against a record in Erlang?

I have heard that specifying records through tuples in the code is a bad practice: I should always use record fields (#record_name{record_field = something}) instead of plain tuples {record_name, ...

1 2 3 4 5 9