J
Jester_EE
Guest
Stéphane
Many thanks!
Matt
Many thanks!
Matt
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I think not. But that's definitely not your problem, you can revert to your previous implementation,However, the example I posted was a watered down version of what I am
doing and currently I need to access the list as it's being built to
look for repetitive entries. Is there a way to access the uncompleted
list while still inside the mapcar function?
2. When passing a list of defstructs to another procedure, it seems toWill yield an: *Error* Name given not a defstruct - mystruct
Any thoughts would be appreciated.Will yield an: *Error* get/getq: first arg must be either symbol, list, defstruct or user type - array@0x14f99596
A comment : your syntax is wrong regarding the let() statement.procedure( myproc(cv)
let(x tlist
; defstruct(mystruct field1 field2 field3) ;This line needs to be
uncommented to work properly
tlist = nil
foreach(x cv~>instanceMasters
tlist = append1(tlist make_mystruct(
?field1 "Infoa"
?field2 "Infob"
?field3 "Infoc"
)
)
)
tlist
)
)