python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Best way to navigate between records in a text file?
I must use records in text files for my college project and be able to navigate between them. This is easy enough, I have a forward and back arrow set of buttons and can easily navigate between by +1 ...
BigBootyProgrammer
Votes: 0
Answers: 1
Retrieve latest record in Tera data
I have updated the question... need to write a query in Tera data to select only the latest record based on the suffix of the userid.
CODE:
SELECT USERID, DEPTNAME,LOCATION
FROM EMP INNER JOIN DEP ...
Anitha
Votes: 0
Answers: 1
`let` field punning from records in ocaml
very menial question, but is there a reason that this works
type rtype = { field : int }
let r : rtype = assert false
let _ = r |> fun { field } -> 0
let _ = let { field } = r in 0
wh...
nicolas
Votes: 0
Answers: 1
Avoiding record for polymorphism in ocaml
Say I want to have polymorphic functions, here in a module.
module type NewHType1 = sig
type ('a, 'n) t
type t'
type ('n, 't) inj = { inj : 'a. ('a, 'n) t -> ('a, ('n, t') happ) app
...
nicolas
Votes: 0
Answers: 1