@abaplint/runtime 2.7.90 → 2.7.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/build/src/abap_regex.d.ts +4 -0
  2. package/build/src/binary_search.d.ts +7 -0
  3. package/build/src/builtin/abs.d.ts +5 -0
  4. package/build/src/builtin/boolc.d.ts +4 -0
  5. package/build/src/builtin/ceil.d.ts +5 -0
  6. package/build/src/builtin/concat_lines_of.d.ts +7 -0
  7. package/build/src/builtin/condense.d.ts +9 -0
  8. package/build/src/builtin/contains.d.ts +15 -0
  9. package/build/src/builtin/cos.d.ts +5 -0
  10. package/build/src/builtin/count.d.ts +12 -0
  11. package/build/src/builtin/count_any_of.d.ts +8 -0
  12. package/build/src/builtin/escape.d.ts +7 -0
  13. package/build/src/builtin/find.d.ts +13 -0
  14. package/build/src/builtin/floor.d.ts +5 -0
  15. package/build/src/builtin/frac.d.ts +6 -0
  16. package/build/src/builtin/index.d.ts +54 -0
  17. package/build/src/builtin/insert.d.ts +9 -0
  18. package/build/src/builtin/ipow.d.ts +6 -0
  19. package/build/src/builtin/lines.d.ts +4 -0
  20. package/build/src/builtin/match.d.ts +5 -0
  21. package/build/src/builtin/matches.d.ts +6 -0
  22. package/build/src/builtin/nmax.d.ts +14 -0
  23. package/build/src/builtin/nmin.d.ts +14 -0
  24. package/build/src/builtin/numofchar.d.ts +5 -0
  25. package/build/src/builtin/repeat.d.ts +6 -0
  26. package/build/src/builtin/replace.d.ts +13 -0
  27. package/build/src/builtin/reverse.d.ts +5 -0
  28. package/build/src/builtin/round.d.ts +8 -0
  29. package/build/src/builtin/segment.d.ts +8 -0
  30. package/build/src/builtin/shift_left.d.ts +9 -0
  31. package/build/src/builtin/shift_right.d.ts +9 -0
  32. package/build/src/builtin/sign.d.ts +5 -0
  33. package/build/src/builtin/sin.d.ts +5 -0
  34. package/build/src/builtin/sqrt.d.ts +5 -0
  35. package/build/src/builtin/strlen.d.ts +5 -0
  36. package/build/src/builtin/substring.d.ts +8 -0
  37. package/build/src/builtin/substring_after.d.ts +6 -0
  38. package/build/src/builtin/substring_before.d.ts +6 -0
  39. package/build/src/builtin/sy.d.ts +2 -0
  40. package/build/src/builtin/tan.d.ts +5 -0
  41. package/build/src/builtin/to_lower.d.ts +4 -0
  42. package/build/src/builtin/to_mixed.d.ts +9 -0
  43. package/build/src/builtin/to_upper.d.ts +4 -0
  44. package/build/src/builtin/translate.d.ts +6 -0
  45. package/build/src/builtin/trunc.d.ts +5 -0
  46. package/build/src/builtin/xstrlen.d.ts +5 -0
  47. package/build/src/classic_error.d.ts +6 -0
  48. package/build/src/clone.d.ts +1 -0
  49. package/build/src/compare/assigned.d.ts +2 -0
  50. package/build/src/compare/between.d.ts +2 -0
  51. package/build/src/compare/ca.d.ts +4 -0
  52. package/build/src/compare/cn.d.ts +3 -0
  53. package/build/src/compare/co.d.ts +4 -0
  54. package/build/src/compare/cp.d.ts +4 -0
  55. package/build/src/compare/cs.d.ts +3 -0
  56. package/build/src/compare/eq.d.ts +4 -0
  57. package/build/src/compare/ge.d.ts +3 -0
  58. package/build/src/compare/gt.d.ts +4 -0
  59. package/build/src/compare/in.d.ts +4 -0
  60. package/build/src/compare/index.d.ts +22 -0
  61. package/build/src/compare/initial.d.ts +4 -0
  62. package/build/src/compare/instance_of.d.ts +2 -0
  63. package/build/src/compare/le.d.ts +3 -0
  64. package/build/src/compare/lt.d.ts +4 -0
  65. package/build/src/compare/m.d.ts +3 -0
  66. package/build/src/compare/na.d.ts +3 -0
  67. package/build/src/compare/ne.d.ts +3 -0
  68. package/build/src/compare/np.d.ts +3 -0
  69. package/build/src/compare/ns.d.ts +3 -0
  70. package/build/src/compare/o.d.ts +2 -0
  71. package/build/src/compare/z.d.ts +2 -0
  72. package/build/src/console/console.d.ts +7 -0
  73. package/build/src/console/memory_console.d.ts +9 -0
  74. package/build/src/console/standard_out_console.d.ts +9 -0
  75. package/build/src/context.d.ts +13 -0
  76. package/build/src/db/db.d.ts +55 -0
  77. package/build/src/expand_dynamic.d.ts +2 -0
  78. package/build/src/expand_in.d.ts +2 -0
  79. package/build/src/index.d.ts +67 -0
  80. package/build/src/offset_length.d.ts +16 -0
  81. package/build/src/operators/_bit_operations.d.ts +6 -0
  82. package/build/src/operators/_parse.d.ts +4 -0
  83. package/build/src/operators/add.d.ts +4 -0
  84. package/build/src/operators/bit-and.d.ts +2 -0
  85. package/build/src/operators/bit-not.d.ts +2 -0
  86. package/build/src/operators/bit-or.d.ts +2 -0
  87. package/build/src/operators/bit-xor.d.ts +2 -0
  88. package/build/src/operators/concat.d.ts +4 -0
  89. package/build/src/operators/div.d.ts +4 -0
  90. package/build/src/operators/divide.d.ts +4 -0
  91. package/build/src/operators/index.d.ts +12 -0
  92. package/build/src/operators/minus.d.ts +4 -0
  93. package/build/src/operators/mod.d.ts +4 -0
  94. package/build/src/operators/multiply.d.ts +4 -0
  95. package/build/src/operators/power.d.ts +4 -0
  96. package/build/src/prefix.d.ts +1 -0
  97. package/build/src/rfc.d.ts +25 -0
  98. package/build/src/statements/append.d.ts +13 -0
  99. package/build/src/statements/assert.d.ts +1 -0
  100. package/build/src/statements/assign.d.ts +12 -0
  101. package/build/src/statements/call_function.d.ts +16 -0
  102. package/build/src/statements/call_transaction.d.ts +1 -0
  103. package/build/src/statements/cast.d.ts +2 -0
  104. package/build/src/statements/clear.d.ts +4 -0
  105. package/build/src/statements/collect.d.ts +3 -0
  106. package/build/src/statements/commit.d.ts +1 -0
  107. package/build/src/statements/concatenate.d.ts +11 -0
  108. package/build/src/statements/condense.d.ts +4 -0
  109. package/build/src/statements/convert.d.ts +14 -0
  110. package/build/src/statements/create_data.d.ts +17 -0
  111. package/build/src/statements/delete_database.d.ts +13 -0
  112. package/build/src/statements/delete_internal.d.ts +12 -0
  113. package/build/src/statements/delete_internal.js +4 -0
  114. package/build/src/statements/describe.d.ts +13 -0
  115. package/build/src/statements/find.d.ts +17 -0
  116. package/build/src/statements/get_bit.d.ts +4 -0
  117. package/build/src/statements/get_locale.d.ts +2 -0
  118. package/build/src/statements/get_parameter.d.ts +2 -0
  119. package/build/src/statements/get_run_time.d.ts +2 -0
  120. package/build/src/statements/get_time.d.ts +9 -0
  121. package/build/src/statements/index.d.ts +106 -0
  122. package/build/src/statements/insert_database.d.ts +13 -0
  123. package/build/src/statements/insert_internal.d.ts +14 -0
  124. package/build/src/statements/loop.d.ts +15 -0
  125. package/build/src/statements/message.d.ts +17 -0
  126. package/build/src/statements/modify_database.d.ts +12 -0
  127. package/build/src/statements/modify_internal.d.ts +9 -0
  128. package/build/src/statements/move_corresponding.d.ts +2 -0
  129. package/build/src/statements/overlay.d.ts +3 -0
  130. package/build/src/statements/raise_event.d.ts +1 -0
  131. package/build/src/statements/read_report.d.ts +8 -0
  132. package/build/src/statements/read_table.d.ts +27 -0
  133. package/build/src/statements/receive.d.ts +9 -0
  134. package/build/src/statements/replace.d.ts +14 -0
  135. package/build/src/statements/rollback.d.ts +1 -0
  136. package/build/src/statements/select.d.ts +8 -0
  137. package/build/src/statements/set_bit.d.ts +4 -0
  138. package/build/src/statements/set_handler.d.ts +3 -0
  139. package/build/src/statements/set_locale.d.ts +2 -0
  140. package/build/src/statements/shift.d.ts +12 -0
  141. package/build/src/statements/sort.d.ts +10 -0
  142. package/build/src/statements/split.d.ts +9 -0
  143. package/build/src/statements/translate.d.ts +2 -0
  144. package/build/src/statements/update_database.d.ts +14 -0
  145. package/build/src/statements/wait.d.ts +5 -0
  146. package/build/src/statements/write.d.ts +17 -0
  147. package/build/src/template_formatting.d.ts +14 -0
  148. package/build/src/throw_error.d.ts +1 -0
  149. package/build/src/types/_abstract_type_data.d.ts +5 -0
  150. package/build/src/types/_character.d.ts +11 -0
  151. package/build/src/types/_date_helper.d.ts +2 -0
  152. package/build/src/types/_numeric.d.ts +5 -0
  153. package/build/src/types/abap_object.d.ts +14 -0
  154. package/build/src/types/character.d.ts +27 -0
  155. package/build/src/types/data_reference.d.ts +29 -0
  156. package/build/src/types/date.d.ts +20 -0
  157. package/build/src/types/decfloat34.d.ts +11 -0
  158. package/build/src/types/field_symbol.d.ts +32 -0
  159. package/build/src/types/float.d.ts +15 -0
  160. package/build/src/types/hex.d.ts +20 -0
  161. package/build/src/types/index.d.ts +18 -0
  162. package/build/src/types/integer.d.ts +15 -0
  163. package/build/src/types/integer8.d.ts +16 -0
  164. package/build/src/types/numc.d.ts +21 -0
  165. package/build/src/types/packed.d.ts +19 -0
  166. package/build/src/types/string.d.ts +19 -0
  167. package/build/src/types/structure.d.ts +31 -0
  168. package/build/src/types/table.d.ts +114 -0
  169. package/build/src/types/time.d.ts +20 -0
  170. package/build/src/types/utc_long.d.ts +18 -0
  171. package/build/src/types/xstring.d.ts +18 -0
  172. package/build/src/unit_test.d.ts +26 -0
  173. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ export declare class ABAPRegExp {
2
+ static convert(input: string): string;
3
+ static escapeRegExp(text: string): string;
4
+ }
@@ -0,0 +1,7 @@
1
+ import { ICharacter } from "./types/_character";
2
+ import { INumeric } from "./types/_numeric";
3
+ /** input indexes = javascript indexes,
4
+ output index = javascript index */
5
+ export declare function binarySearchFromRow(array: readonly any[], left: number, right: number, keyField: (i: any) => any, keyValue: INumeric | ICharacter, usesTableLine: boolean | undefined): number;
6
+ export declare function binarySearchFrom(array: readonly any[], left: number, right: number, keyField: string, keyValue: INumeric | ICharacter): number;
7
+ export declare function binarySearchTo(array: readonly any[], left: number, right: number, keyField: string, keyValue: INumeric | ICharacter): number;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function abs(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,4 @@
1
+ import { Character, String } from "../types";
2
+ export declare function boolc(input: boolean | undefined | {
3
+ val: Character | String;
4
+ }): String;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function ceil(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,7 @@
1
+ import { Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { String } from "../types/string";
4
+ export declare function concat_lines_of(input: {
5
+ table: Table;
6
+ sep: ICharacter | string | undefined;
7
+ }): String;
@@ -0,0 +1,9 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function condense(input: {
5
+ val: ICharacter | INumeric | string;
6
+ from?: ICharacter | string;
7
+ to?: ICharacter | string;
8
+ del?: ICharacter | string;
9
+ }): String;
@@ -0,0 +1,15 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export type ContainsInput = {
5
+ val: ICharacter;
6
+ regex?: ICharacter;
7
+ sub?: ICharacter;
8
+ start?: ICharacter;
9
+ end?: ICharacter;
10
+ case?: ICharacter;
11
+ off?: INumeric;
12
+ len?: INumeric;
13
+ occ?: INumeric;
14
+ };
15
+ export declare function contains(input: ContainsInput): String;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function cos(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,12 @@
1
+ import { Integer } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export type countInput = {
5
+ val: ICharacter;
6
+ sub: ICharacter;
7
+ regex?: ICharacter;
8
+ case?: ICharacter;
9
+ len?: INumeric;
10
+ off?: INumeric;
11
+ };
12
+ export declare function count(input: countInput): Integer;
@@ -0,0 +1,8 @@
1
+ import { Integer } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ type countAnyOfInput = {
4
+ val: ICharacter;
5
+ sub: ICharacter;
6
+ };
7
+ export declare function count_any_of(input: countAnyOfInput): Integer;
8
+ export {};
@@ -0,0 +1,7 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function escape(input: {
5
+ val: ICharacter | string;
6
+ format: INumeric | number;
7
+ }): String;
@@ -0,0 +1,13 @@
1
+ import { Integer } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export interface IFindInput {
5
+ val: ICharacter | string;
6
+ sub?: ICharacter | string;
7
+ off?: INumeric | number;
8
+ occ?: INumeric | number;
9
+ len?: INumeric | number;
10
+ regex?: ICharacter | string;
11
+ case?: ICharacter | string;
12
+ }
13
+ export declare function find(input: IFindInput): Integer;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function floor(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,6 @@
1
+ import { DecFloat34, Float } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function frac(input: {
5
+ val: number | string | ICharacter | INumeric;
6
+ }): number | Float | DecFloat34;
@@ -0,0 +1,54 @@
1
+ import { Character } from "../types";
2
+ export * from "./abs";
3
+ export * from "./boolc";
4
+ export * from "./ceil";
5
+ export * from "./concat_lines_of";
6
+ export * from "./condense";
7
+ export * from "./contains";
8
+ export * from "./cos";
9
+ export * from "./count_any_of";
10
+ export * from "./count";
11
+ export * from "./escape";
12
+ export * from "./find";
13
+ export * from "./floor";
14
+ export * from "./frac";
15
+ export * from "./insert";
16
+ export * from "./ipow";
17
+ export * from "./lines";
18
+ export * from "./match";
19
+ export * from "./matches";
20
+ export * from "./nmax";
21
+ export * from "./nmin";
22
+ export * from "./numofchar";
23
+ export * from "./repeat";
24
+ export * from "./replace";
25
+ export * from "./reverse";
26
+ export * from "./round";
27
+ export * from "./segment";
28
+ export * from "./shift_right";
29
+ export * from "./shift_left";
30
+ export * from "./sign";
31
+ export * from "./sin";
32
+ export * from "./sqrt";
33
+ export * from "./strlen";
34
+ export * from "./substring_after";
35
+ export * from "./substring_before";
36
+ export * from "./substring";
37
+ export * from "./sy";
38
+ export * from "./tan";
39
+ export * from "./to_lower";
40
+ export * from "./to_mixed";
41
+ export * from "./to_upper";
42
+ export * from "./translate";
43
+ export * from "./trunc";
44
+ export * from "./xstrlen";
45
+ export declare const abap_true: Character;
46
+ export declare const abap_false: Character;
47
+ export declare const abap_undefined: Character;
48
+ export declare const space: Character;
49
+ export declare const $_backspace: Character;
50
+ export declare const $_cr_lf: Character;
51
+ export declare const $_formfeed: Character;
52
+ export declare const $_horizontal_tab: Character;
53
+ export declare const $_newline: Character;
54
+ export declare const $_vertical_tab: Character;
@@ -0,0 +1,9 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export interface IInsertInput {
5
+ val: ICharacter;
6
+ sub: ICharacter;
7
+ off?: INumeric;
8
+ }
9
+ export declare function insert(input: IInsertInput): String;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function ipow(input: {
4
+ base: number | string | ICharacter | INumeric;
5
+ exp: number | string | ICharacter | INumeric;
6
+ }): string;
@@ -0,0 +1,4 @@
1
+ import { Table, Integer, FieldSymbol } from "../types";
2
+ export declare function lines(input: {
3
+ val: Table | FieldSymbol;
4
+ }): Integer;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function match(input: {
3
+ val: ICharacter | string;
4
+ regex: ICharacter | string;
5
+ }): ICharacter;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function matches(input: {
3
+ val: ICharacter | string;
4
+ regex?: ICharacter | string;
5
+ pcre?: ICharacter | string;
6
+ }): ICharacter;
@@ -0,0 +1,14 @@
1
+ import { INumeric } from "../types/_numeric";
2
+ import { Float } from "../types";
3
+ export interface INmaxInput {
4
+ val1: number | INumeric;
5
+ val2: number | INumeric;
6
+ val3?: number | INumeric;
7
+ val4?: number | INumeric;
8
+ val5?: number | INumeric;
9
+ val6?: number | INumeric;
10
+ val7?: number | INumeric;
11
+ val8?: number | INumeric;
12
+ val9?: number | INumeric;
13
+ }
14
+ export declare function nmax(input: INmaxInput): Float;
@@ -0,0 +1,14 @@
1
+ import { INumeric } from "../types/_numeric";
2
+ import { Float } from "../types";
3
+ export interface INminInput {
4
+ val1: number | INumeric;
5
+ val2: number | INumeric;
6
+ val3?: number | INumeric;
7
+ val4?: number | INumeric;
8
+ val5?: number | INumeric;
9
+ val6?: number | INumeric;
10
+ val7?: number | INumeric;
11
+ val8?: number | INumeric;
12
+ val9?: number | INumeric;
13
+ }
14
+ export declare function nmin(input: INminInput): Float;
@@ -0,0 +1,5 @@
1
+ import { Integer } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ export declare function numofchar(input: {
4
+ val: ICharacter | string;
5
+ }): Integer;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function repeat(input: {
4
+ val: ICharacter | string;
5
+ occ: INumeric;
6
+ }): ICharacter;
@@ -0,0 +1,13 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ import { String } from "../types/string";
4
+ export interface IReplaceInput {
5
+ val: string | ICharacter;
6
+ sub?: string | ICharacter;
7
+ with?: string | ICharacter;
8
+ regex?: string | ICharacter;
9
+ off?: INumeric;
10
+ len?: INumeric;
11
+ occ?: INumeric;
12
+ }
13
+ export declare function replace(input: IReplaceInput): String;
@@ -0,0 +1,5 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ export declare function reverse(input: {
4
+ val: ICharacter | string;
5
+ }): String;
@@ -0,0 +1,8 @@
1
+ import { Float } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function round(input: {
5
+ val: ICharacter | string;
6
+ dec: INumeric | number;
7
+ mode?: INumeric | number;
8
+ }): Float;
@@ -0,0 +1,8 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function segment(input: {
5
+ val: ICharacter | string;
6
+ index: INumeric | number;
7
+ sep: ICharacter | string;
8
+ }): String;
@@ -0,0 +1,9 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export interface IShiftLeftInput {
4
+ val: ICharacter | string;
5
+ sub?: ICharacter | string;
6
+ places?: ICharacter | INumeric | string;
7
+ circular?: INumeric;
8
+ }
9
+ export declare function shift_left(input: IShiftLeftInput): ICharacter;
@@ -0,0 +1,9 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export interface IShiftRight {
4
+ val: ICharacter | string;
5
+ sub?: ICharacter | string;
6
+ places?: ICharacter | INumeric | string;
7
+ circular?: INumeric;
8
+ }
9
+ export declare function shift_right(input: IShiftRight): ICharacter;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function sign(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function sin(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function sqrt(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,5 @@
1
+ import { Integer } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ export declare function strlen(input: {
4
+ val: ICharacter | string;
5
+ }): Integer;
@@ -0,0 +1,8 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export interface ISubstringInput {
4
+ val: ICharacter | string;
5
+ off?: INumeric;
6
+ len?: INumeric;
7
+ }
8
+ export declare function substring(input: ISubstringInput): ICharacter;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function substring_after(input: {
3
+ val: ICharacter | string;
4
+ sub?: ICharacter | string;
5
+ regex?: ICharacter | string;
6
+ }): ICharacter;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function substring_before(input: {
3
+ val: ICharacter | string;
4
+ sub?: ICharacter | string;
5
+ regex?: ICharacter | string;
6
+ }): ICharacter;
@@ -0,0 +1,2 @@
1
+ import { Structure } from "../types";
2
+ export declare const sy: Structure;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function tan(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,4 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function to_lower(input: {
3
+ val: ICharacter | string;
4
+ }): ICharacter;
@@ -0,0 +1,9 @@
1
+ import { String } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function to_mixed(input: {
5
+ val: ICharacter | string;
6
+ sep?: ICharacter | string;
7
+ case?: ICharacter | string;
8
+ min?: INumeric | number;
9
+ }): String;
@@ -0,0 +1,4 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function to_upper(input: {
3
+ val: ICharacter | string;
4
+ }): ICharacter;
@@ -0,0 +1,6 @@
1
+ import { ICharacter } from "../types/_character";
2
+ export declare function translate(input: {
3
+ val: ICharacter | string;
4
+ from: ICharacter | string;
5
+ to: ICharacter | string;
6
+ }): ICharacter;
@@ -0,0 +1,5 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function trunc(input: {
4
+ val: number | string | ICharacter | INumeric;
5
+ }): number;
@@ -0,0 +1,5 @@
1
+ import { Hex, Integer, XString } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ export declare function xstrlen(input: {
4
+ val: ICharacter | string | Hex | XString;
5
+ }): Integer;
@@ -0,0 +1,6 @@
1
+ export declare class ClassicError extends Error {
2
+ classic: string;
3
+ constructor(input: {
4
+ classic: string;
5
+ });
6
+ }
@@ -0,0 +1 @@
1
+ export declare function clone<T>(obj: T): T;
@@ -0,0 +1,2 @@
1
+ import { FieldSymbol } from "../types";
2
+ export declare function assigned(val: FieldSymbol): boolean;
@@ -0,0 +1,2 @@
1
+ import { INumeric } from "../types/_numeric";
2
+ export declare function between(left: number | INumeric, and1: number | INumeric, and2: number | INumeric): boolean;
@@ -0,0 +1,4 @@
1
+ import { Structure } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function ca(left: number | string | ICharacter | INumeric | Structure, right: string | ICharacter): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function cn(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,4 @@
1
+ import { Structure } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function co(left: number | string | ICharacter | INumeric, right: string | Structure | ICharacter): boolean;
@@ -0,0 +1,4 @@
1
+ import { Structure } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function cp(left: number | string | ICharacter | INumeric | Structure, right: string | ICharacter): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function cs(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,4 @@
1
+ import { ABAPObject, FieldSymbol, Float, HashedTable, String, Hex, Structure, Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function eq(left: number | string | ICharacter | INumeric | Float | String | ABAPObject | Structure | Hex | HashedTable | Table | FieldSymbol, right: number | string | ICharacter | INumeric | Float | String | ABAPObject | Structure | Hex | HashedTable | Table | FieldSymbol): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function ge(left: number | string | ICharacter | INumeric, right: number | string | ICharacter | INumeric): boolean;
@@ -0,0 +1,4 @@
1
+ import { ABAPObject, HashedTable, Structure, Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function gt(left: number | string | ICharacter | INumeric | ABAPObject | Structure | Table | HashedTable, right: number | string | ICharacter | INumeric | ABAPObject | Structure | Table | HashedTable): boolean;
@@ -0,0 +1,4 @@
1
+ import { Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function compareIn(left: number | string | ICharacter | INumeric, right: Table): boolean;
@@ -0,0 +1,22 @@
1
+ export * from "./assigned";
2
+ export * from "./between";
3
+ export * from "./ca";
4
+ export * from "./cn";
5
+ export * from "./co";
6
+ export * from "./cp";
7
+ export * from "./cs";
8
+ export * from "./eq";
9
+ export * from "./ge";
10
+ export * from "./gt";
11
+ export * from "./initial";
12
+ export * from "./instance_of";
13
+ export * from "./le";
14
+ export * from "./lt";
15
+ export * from "./m";
16
+ export * from "./na";
17
+ export * from "./ne";
18
+ export * from "./np";
19
+ export * from "./ns";
20
+ export * from "./o";
21
+ export * from "./z";
22
+ export { compareIn as in } from "./in";
@@ -0,0 +1,4 @@
1
+ import { ABAPObject, DataReference, FieldSymbol, Structure, Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function initial(val: ICharacter | INumeric | string | number | Structure | DataReference | FieldSymbol | Table | ABAPObject): boolean;
@@ -0,0 +1,2 @@
1
+ import { ABAPObject } from "../types";
2
+ export declare function instance_of(val: ABAPObject, cname: any): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function le(left: number | string | ICharacter | INumeric, right: number | string | ICharacter | INumeric): boolean;
@@ -0,0 +1,4 @@
1
+ import { ABAPObject, Structure, Table } from "../types";
2
+ import { ICharacter } from "../types/_character";
3
+ import { INumeric } from "../types/_numeric";
4
+ export declare function lt(left: number | string | ICharacter | INumeric | ABAPObject | Structure | Table, right: number | string | ICharacter | INumeric | ABAPObject | Structure | Table): boolean;
@@ -0,0 +1,3 @@
1
+ import { Hex, XString } from "../types";
2
+ export declare function hexToBinary(input: Hex | XString): string;
3
+ export declare function m(operand1: Hex | XString, operand2: Hex | XString): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function na(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function ne(left: number | string | ICharacter | INumeric, right: number | string | ICharacter | INumeric): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function np(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,3 @@
1
+ import { ICharacter } from "../types/_character";
2
+ import { INumeric } from "../types/_numeric";
3
+ export declare function ns(left: number | string | ICharacter | INumeric, right: string | ICharacter): boolean;
@@ -0,0 +1,2 @@
1
+ import { Hex, XString } from "../types";
2
+ export declare function o(operand1: Hex | XString, operand2: Hex | XString): boolean;
@@ -0,0 +1,2 @@
1
+ import { Hex, XString } from "../types";
2
+ export declare function z(operand1: Hex | XString, operand2: Hex | XString): boolean;
@@ -0,0 +1,7 @@
1
+ export interface Console {
2
+ clear(): void;
3
+ add(data: string): void;
4
+ get(): string;
5
+ getTrimmed(): string;
6
+ isEmpty(): boolean;
7
+ }