recalc-univer
Safe HaskellSafe-Inferred
LanguageGHC2021

Recalc.Univer

Description

This module defines the interface UniverRecalc for which univerMain is defined:

univerMain @Term (env0 :: EnvOf Term) :: IO ()

which will run a spreadsheet language server serving a Univer frontend.

Synopsis

Documentation

data Annotation Source #

Constructors

Annotation 

Instances

Instances details
FromJSON Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

ToJSON Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

Generic Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

Associated Types

type Rep Annotation :: Type -> Type #

Show Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

Eq Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep Annotation Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep Annotation = D1 ('MetaData "Annotation" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "Annotation" 'PrefixI 'True) (S1 ('MetaSel ('Just "ann'title") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "ann'message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

data FunctionDescription Source #

Instances

Instances details
ToJSON FunctionDescription Source # 
Instance details

Defined in Recalc.Univer.Protocol

Generic FunctionDescription Source # 
Instance details

Defined in Recalc.Univer.Protocol

Associated Types

type Rep FunctionDescription :: Type -> Type #

Show FunctionDescription Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep FunctionDescription Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep FunctionDescription = D1 ('MetaData "FunctionDescription" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "FunctionDescription" 'PrefixI 'True) ((S1 ('MetaSel ('Just "functionDescription'name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "functionDescription'type") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 FunctionType)) :*: (S1 ('MetaSel ('Just "functionDescription'description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: (S1 ('MetaSel ('Just "functionDescription'abstract") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "functionDescription'params") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [FunctionParameter])))))

data FunctionParameter Source #

Instances

Instances details
ToJSON FunctionParameter Source # 
Instance details

Defined in Recalc.Univer.Protocol

Generic FunctionParameter Source # 
Instance details

Defined in Recalc.Univer.Protocol

Associated Types

type Rep FunctionParameter :: Type -> Type #

Show FunctionParameter Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep FunctionParameter Source # 
Instance details

Defined in Recalc.Univer.Protocol

type Rep FunctionParameter = D1 ('MetaData "FunctionParameter" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "FunctionParameter" 'PrefixI 'True) (S1 ('MetaSel ('Just "parameter'name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: (S1 ('MetaSel ('Just "parameter'detail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "parameter'example") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text))))

data FunctionType Source #

as defined in @univerjsengine-formula#basicsfunction.ts

Constructors

Financial

Financial Functions

Date

Date and Time Functions

Math

Math and Trigonometry Functions

Statistical

Statistical Functions

Lookup

Lookup and Reference Functions

Database

Database Functions

Text

Text Functions

Logical

Logical Functions

Information

Information Functions

Engineering

Engineering Functions

Cube

Cube Functions

Compatibility

Compatibility Functions

Web

Web Functions

Array

Array Functions

Univer

Univer-specific functions

User

User-defined functions

DefinedName

Defined name

class (Recalc t, Pretty t, Show (ErrorOf t)) => UniverRecalc t where Source #

Minimal complete definition

errorAnnotation

univerMain :: forall t. UniverRecalc t => EnvOf t -> IO () Source #