Displaying 5 results from an estimated 5 matches for "quasiquotations".
2017 Oct 03
0
nofrills: Low-Cost Anonymous Functions
Dear R Users,
nofrills (0.2.0) has been published on CRAN:
https://cran.r-project.org/package=nofrills
This lightweight package provides `fn()`, a compact variation of the
usual syntax of function declaration, in order to support
tidyverse-style quasiquotation of a function?s arguments and body.
Aside from enabling a shorter but fully general syntax for function
declarations, the main benefit
2017 Mar 19
3
RFC: (in-principle) native unquoting for standard evaluation
Michael Lawrence (as last in long series of posters)...
> Yes, it would bind the language object to the environment, like an
> R-level promise (but "promise" of course refers specifically to just
> _lazy_ evaluation).
>
> For the uqs() thing, expanding calls like that is somewhat orthogonal
> to NSE. It would be nice in general to be able to write something like
>
2017 Oct 10
3
Make LLD output COFF relocatable object file (like ELF's -r does). How much work is required to implement this?
...than when linking already
prelinked big *.o file.
There are, perhaps, some confusions related to what GHC *runtime* linker
is. GHC runtime linker goes out into the scene when either GHC is used
interactively, or GHC encounters the code which it has to execute at
compile time (Template Haskell/quasiquotations). Thus GHC compiler must
link some external code during it's own run time.
HTH.
Cheers,
Kyra
2017 Mar 19
0
RFC: (in-principle) native unquoting for standard evaluation
On Mon, Mar 20, 2017 at 7:36 AM, Radford Neal <radford at cs.toronto.edu> wrote:
> Michael Lawrence (as last in long series of posters)...
>
>> Yes, it would bind the language object to the environment, like an
>> R-level promise (but "promise" of course refers specifically to just
>> _lazy_ evaluation).
>>
>> For the uqs() thing, expanding calls
2017 Oct 10
2
Make LLD output COFF relocatable object file (like ELF's -r does). How much work is required to implement this?
TL;DR:
I'm trying to evaluate if LLD can be used with GHC (Glasgow Haskell
Compiler) on Windows.
Haskell binary code is usually deployed in "packages". A package
typically provides static library(ies) and optionally – shared
library(ies) and/or prelinked ('ld -r') object file. The latter is the
best way to satisfy GHC runtime linker, since it requires no separate