toRisLines

fun Flow<RisRecord>.toRisLines(sort: List<String> = emptyList()): Flow<String>

Converts a flow of RisRecords into a flow of Strings in RIS file format. Optionally accepts a list of names of RisTags defining a sort order for the RisTags in the file.


Converts a list of RisRecords into a list of Strings in RIS file format. Optionally accepts a list of names of RisTags defining a sort order for the RisTags in the file.


fun Sequence<RisRecord>.toRisLines(scope: CoroutineScope = GlobalScope): Sequence<String>

Processes a sequence of RisRecords into a sequence of Strings representing lines in RIS file format.