working rss feed to nostr publish

This commit is contained in:
2023-11-24 00:43:28 -05:00
parent 06edcb57ae
commit 88d2f9cfec
8396 changed files with 783105 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
/**
* @packageDocumentation
* @module std.base
*/
import { IContainer } from "../../base/container/IContainer";
/**
* Basic reverse iterator.
*
* @author Jeongho Nam - https://github.com/samchon
*/
export declare abstract class ReverseIterator<T extends PElem, Source extends IContainer<T, Source, Base, This, PElem>, Base extends IContainer.Iterator<T, Source, Base, This, PElem>, This extends ReverseIterator<T, Source, Base, This, PElem>, PElem = T> implements IContainer.ReverseIterator<T, Source, Base, This, PElem> {
protected base_: Base;
/**
* Initializer Constructor.
*
* @param base The base iterator.
*/
constructor(base: Base);
protected abstract _Create_neighbor(base: Base): This;
/**
* Get source container.
*
* @return The source container.
*/
source(): Source;
/**
* @inheritDoc
*/
base(): Base;
/**
* @inheritDoc
*/
get value(): T;
/**
* @inheritDoc
*/
prev(): This;
/**
* @inheritDoc
*/
next(): This;
/**
* @inheritDoc
*/
equals(obj: This): boolean;
}