SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

ghc-data-accessor rpm build for : OpenSuSE. For other distributions click ghc-data-accessor.

Name : ghc-data-accessor
Version : 0.2.2.7 Vendor : obs://build_opensuse_org/devel:languages:haskell
Release : 8.1 Date : 2018-06-27 17:34:10
Group : Development/Libraries/Haskell Source RPM : ghc-data-accessor-0.2.2.7-8.1.src.rpm
Size : 0.15 MB
Packager : (none)
Summary : Utilities for accessing and manipulating fields of records
Description :
In Haskell 98 the name of a record field is automatically also the name of a
function which gets the value of the according field. E.g. if we have

data Pair a b = Pair first :: a, second :: b

then

> first :: Pair a b -> a > second :: Pair a b -> b

However for setting or modifying a field value we need to use some syntactic
sugar, which is often clumsy.

modifyFirst :: (a -> a) -> (Pair a b -> Pair a b) modifyFirst f rAATT(Pair first=a
) = r first = f a

With this package you can define record field accessors which allow setting,
getting and modifying values easily. The package clearly demonstrates the power
of the functional approach: You can combine accessors of a record and
sub-records, to make the access look like the fields of the sub-record belong
to the main record.

Example:

> *Data.Accessor.Example> (first^:second^=10) ((\'b\',7),\"hallo\") >
((\'b\',10),\"hallo\")

You can easily manipulate record fields in a \'Control.Monad.State.State\' monad,
you can easily code \'Show\' instances that use the Accessor syntax and you can
parse binary streams into records. See \'Data.Accessor.Example\' for
demonstration of all features.

It would be great if in revised Haskell versions the names of record fields are
automatically \'Data.Accessor.Accessor\'s rather than plain \'get\' functions.
For now, the package \'data-accessor-template\' provides Template Haskell
functions for automated generation of \'Data.Acesssor.Accessor\'s. See also the
other \'data-accessor\' packages that provide an Accessor interface to other data
types. The package \'enumset\' provides accessors to bit-packed records.

For similar packages see \'lenses\' and \'fclabel\'. A related concept are editors
< http://conal.net/blog/posts/semantic-editor-combinators/>. Editors only
consist of a modify method (and \'modify\' applied to a \'const\' function is a
\'set\' function). This way, they can modify all function values of a function at
once, whereas an accessor can only change a single function value, say, it can
change \'f 0 = 1\' to \'f 0 = 2\'. This way, editors can even change the type of a
record or a function. An Arrow instance can be defined for editors, but for
accessors only a Category instance is possible (\'(.)\' method). The reason is
the \'arr\' method of the \'Arrow\' class, that conflicts with the two-way nature
(set and get) of accessors.

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/haskell:/lts:/9/SLE_12_Backports/x86_64

Content of RPM  Changelog  Provides Requires

Hmm ... It's impossible ;-) This RPM doesn't exist on any FTP server

Provides :
ghc-data-accessor
ghc-data-accessor(x86-64)
libHSdata-accessor-0.2.2.7-4qt9kbhlqc22eurok1PC3k-ghc8.0.2.so()(64bit)

Requires :
rpmlib(CompressedFileNames) <= 3.0.4-1
libc.so.6()(64bit)
libgmp.so.10()(64bit)
libHSbase-4.9.1.0-ghc8.0.2.so()(64bit)
libc.so.6(GLIBC_2.2.5)(64bit)
rpmlib(PayloadIsLzma) <= 4.4.6-1
libHScontainers-0.5.7.1-ghc8.0.2.so()(64bit)
libHSghc-prim-0.5.0.0-ghc8.0.2.so()(64bit)
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
libHSarray-0.5.1.1-ghc8.0.2.so()(64bit)
libHSdeepseq-1.4.2.0-ghc8.0.2.so()(64bit)
libHStransformers-0.5.2.0-ghc8.0.2.so()(64bit)
libHSinteger-gmp-1.0.0.1-ghc8.0.2.so()(64bit)


Content of RPM :
/usr/lib64/ghc-8.0.2/data-accessor-0.2.2.7-4qt9kbhlqc22eurok1PC3k
/usr/lib64/ghc-8.0.2/data-accessor-0.2.2.7-4qt9kbhlqc22eurok1PC3k/libHSdata-accessor-0.2.2.7-4qt9kbhlqc22eurok1PC3k-ghc8.0.2.so
/usr/share/doc/packages/ghc-data-accessor
/usr/share/doc/packages/ghc-data-accessor/LICENSE

 
ICM