@abaplint/runtime
Version:
Transpiler - Runtime
12 lines (11 loc) • 439 B
TypeScript
import { INumeric } from "../types/_numeric";
import { ICharacter } from "../types/_character";
import { Table } from "../types";
export interface IConcatenateInput {
source: (number | string | INumeric | ICharacter | Table)[];
target: ICharacter;
separatedBy?: number | string | INumeric | ICharacter;
respectingBlanks?: boolean;
lines?: boolean;
}
export declare function concatenate(input: IConcatenateInput): void;