Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Recalc.Univer.Protocol
Description
Synopsis
- data SpreadsheetProtocol mode = SpreadsheetProtocol {
- rpcOpen :: mode :- JsonRpc "open" OpenParams ()
- rpcSave :: mode :- JsonRpc "save" SaveParams ()
- rpcClose :: mode :- JsonRpc "close" CloseParams ()
- rpcSetRangeValues :: mode :- JsonRpc "setRangeValues" SetRangeValuesParams Cells
- rpcInsertSheet :: mode :- JsonRpc "insertSheet" InsertSheetParams ()
- rpcRemoveSheet :: mode :- JsonRpc "removeSheet" RemoveSheetParams ()
- rpcSetWorksheetOrder :: mode :- JsonRpc "setWorksheetOrder" SetWorksheetOrderParams ()
- rpcSetWorksheetName :: mode :- JsonRpc "setWorksheetName" SetWorksheetNameParams ()
- rpcDefineFunction :: mode :- JsonRpc "defineFunction" DefineFunctionParams (Either Text [FunctionDescription])
- data OpenParams = OpenParams {
- open'uri :: URI
- open'sheetOrder :: [Text]
- data SaveParams = SaveParams {
- save'uri :: URI
- save'asUri :: URI
- newtype CloseParams = CloseParams {}
- data SetRangeValuesParams = SetRangeValuesParams {}
- data InsertSheetParams = InsertSheetParams {}
- data RemoveSheetParams = RemoveSheetParams {}
- data SetWorksheetOrderParams = SetWorksheetOrderParams {}
- data SetWorksheetNameParams = SetWorksheetNameParams {}
- data DefineFunctionParams = DefineFunctionParams {}
- data FunctionType
- = Financial
- | Date
- | Math
- | Statistical
- | Lookup
- | Database
- | Text
- | Logical
- | Information
- | Engineering
- | Cube
- | Compatibility
- | Web
- | Array
- | Univer
- | User
- | DefinedName
- data FunctionParameter = FunctionParameter {}
- data FunctionDescription = FunctionDescription {}
- data Annotation = Annotation {
- ann'title, ann'message :: Text
- data CustomData = CustomData {}
- newtype BooleanInt = BooleanInt {}
- data CellStyle f = CellStyle {
- cellStyle'bl :: f BooleanInt
- cellStyle'it :: f BooleanInt
- data CellData = CellData {}
- newtype Cells = Cells (Map (Int, Int) CellData)
- quotientOn :: Eq q => (a -> q) -> [a] -> [(q, [a])]
Documentation
data SpreadsheetProtocol mode Source #
Constructors
SpreadsheetProtocol | |
Fields
|
Instances
data OpenParams Source #
Constructors
OpenParams | |
Fields
|
Instances
FromJSON OpenParams Source # | |
Defined in Recalc.Univer.Protocol | |
Generic OpenParams Source # | |
Defined in Recalc.Univer.Protocol Associated Types type Rep OpenParams :: Type -> Type # | |
Show OpenParams Source # | |
Defined in Recalc.Univer.Protocol Methods showsPrec :: Int -> OpenParams -> ShowS # show :: OpenParams -> String # showList :: [OpenParams] -> ShowS # | |
type Rep OpenParams Source # | |
Defined in Recalc.Univer.Protocol type Rep OpenParams = D1 ('MetaData "OpenParams" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "OpenParams" 'PrefixI 'True) (S1 ('MetaSel ('Just "open'uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 URI) :*: S1 ('MetaSel ('Just "open'sheetOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [Text]))) |
data SaveParams Source #
Constructors
SaveParams | |
Fields
|
Instances
FromJSON SaveParams Source # | |
Defined in Recalc.Univer.Protocol | |
Generic SaveParams Source # | |
Defined in Recalc.Univer.Protocol Associated Types type Rep SaveParams :: Type -> Type # | |
Show SaveParams Source # | |
Defined in Recalc.Univer.Protocol Methods showsPrec :: Int -> SaveParams -> ShowS # show :: SaveParams -> String # showList :: [SaveParams] -> ShowS # | |
type Rep SaveParams Source # | |
Defined in Recalc.Univer.Protocol type Rep SaveParams = D1 ('MetaData "SaveParams" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "SaveParams" 'PrefixI 'True) (S1 ('MetaSel ('Just "save'uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 URI) :*: S1 ('MetaSel ('Just "save'asUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 URI))) |
newtype CloseParams Source #
Constructors
CloseParams | |
Instances
FromJSON CloseParams Source # | |
Defined in Recalc.Univer.Protocol | |
Generic CloseParams Source # | |
Defined in Recalc.Univer.Protocol Associated Types type Rep CloseParams :: Type -> Type # | |
Show CloseParams Source # | |
Defined in Recalc.Univer.Protocol Methods showsPrec :: Int -> CloseParams -> ShowS # show :: CloseParams -> String # showList :: [CloseParams] -> ShowS # | |
type Rep CloseParams Source # | |
Defined in Recalc.Univer.Protocol type Rep CloseParams = D1 ('MetaData "CloseParams" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'True) (C1 ('MetaCons "CloseParams" 'PrefixI 'True) (S1 ('MetaSel ('Just "close'uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 URI))) |
data SetRangeValuesParams Source #
Constructors
SetRangeValuesParams | |
Fields |
Instances
data InsertSheetParams Source #
Constructors
InsertSheetParams | |
Fields |
Instances
data RemoveSheetParams Source #
Constructors
RemoveSheetParams | |
Fields |
Instances
data SetWorksheetOrderParams Source #
Constructors
SetWorksheetOrderParams | |
Instances
data SetWorksheetNameParams Source #
Constructors
SetWorksheetNameParams | |
Instances
data DefineFunctionParams Source #
Constructors
DefineFunctionParams | |
Fields |
Instances
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 |
Instances
ToJSON FunctionType Source # | |
Defined in Recalc.Univer.Protocol Methods toJSON :: FunctionType -> Value # toEncoding :: FunctionType -> Encoding # toJSONList :: [FunctionType] -> Value # toEncodingList :: [FunctionType] -> Encoding # omitField :: FunctionType -> Bool # | |
Enum FunctionType Source # | |
Defined in Recalc.Univer.Protocol Methods succ :: FunctionType -> FunctionType # pred :: FunctionType -> FunctionType # toEnum :: Int -> FunctionType # fromEnum :: FunctionType -> Int # enumFrom :: FunctionType -> [FunctionType] # enumFromThen :: FunctionType -> FunctionType -> [FunctionType] # enumFromTo :: FunctionType -> FunctionType -> [FunctionType] # enumFromThenTo :: FunctionType -> FunctionType -> FunctionType -> [FunctionType] # | |
Show FunctionType Source # | |
Defined in Recalc.Univer.Protocol Methods showsPrec :: Int -> FunctionType -> ShowS # show :: FunctionType -> String # showList :: [FunctionType] -> ShowS # |
data FunctionParameter Source #
Constructors
FunctionParameter | |
Fields |
Instances
data FunctionDescription Source #
Constructors
FunctionDescription | |
Instances
data Annotation Source #
Constructors
Annotation | |
Fields
|
Instances
data CustomData Source #
keep errors, warnings for each cell
Constructors
CustomData | |
Fields |
Instances
newtype BooleanInt Source #
Constructors
BooleanInt | |
Instances
FromJSON BooleanInt Source # | |
Defined in Recalc.Univer.Protocol | |
ToJSON BooleanInt Source # | |
Defined in Recalc.Univer.Protocol Methods toJSON :: BooleanInt -> Value # toEncoding :: BooleanInt -> Encoding # toJSONList :: [BooleanInt] -> Value # toEncodingList :: [BooleanInt] -> Encoding # omitField :: BooleanInt -> Bool # |
Constructors
CellStyle | |
Fields
|
Instances
FromJSON (CellStyle Maybe) Source # | |
ToJSON (CellStyle Maybe) Source # | |
Generic (CellStyle f) Source # | |
type Rep (CellStyle f) Source # | |
Defined in Recalc.Univer.Protocol type Rep (CellStyle f) = D1 ('MetaData "CellStyle" "Recalc.Univer.Protocol" "recalc-univer-1.3.0.0-inplace" 'False) (C1 ('MetaCons "CellStyle" 'PrefixI 'True) (S1 ('MetaSel ('Just "cellStyle'bl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (f BooleanInt)) :*: S1 ('MetaSel ('Just "cellStyle'it") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (f BooleanInt)))) |
corresponds to ICellData (see: https://univer.ai/typedoc/@univerjs/core/interfaces/ICellData)
Constructors
CellData | |
Fields
|
Instances
quotientOn :: Eq q => (a -> q) -> [a] -> [(q, [a])] Source #
assumes the input list is sorted and that the repr
function respects the order