working rss feed to nostr publish
This commit is contained in:
+136
@@ -0,0 +1,136 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
var __read = (this && this.__read) || function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.FlatMultiMap = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.experimental
|
||||
*/
|
||||
//================================================================
|
||||
var MultiTreeMap_1 = require("../../internal/container/associative/MultiTreeMap");
|
||||
var ITreeContainer_1 = require("../../internal/container/associative/ITreeContainer");
|
||||
var MapElementVector_1 = require("../../internal/container/associative/MapElementVector");
|
||||
var binary_search_1 = require("../../algorithm/binary_search");
|
||||
/**
|
||||
* Multiple-key Map based on sorted array.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var FlatMultiMap = /** @class */ (function (_super) {
|
||||
__extends(FlatMultiMap, _super);
|
||||
function FlatMultiMap() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
var _this =
|
||||
// INITIALIZATION
|
||||
_super.call(this, function (thisArg) { return new MapElementVector_1.MapElementVector(thisArg); }) || this;
|
||||
// OVERLOADINGS
|
||||
ITreeContainer_1.ITreeContainer.construct.apply(ITreeContainer_1.ITreeContainer, __spreadArray([_this,
|
||||
FlatMultiMap,
|
||||
function (comp) {
|
||||
_this.key_comp_ = comp;
|
||||
}], __read(args), false));
|
||||
return _this;
|
||||
}
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
FlatMultiMap.prototype.swap = function (obj) {
|
||||
var _a, _b;
|
||||
// SWAP CONTENTS
|
||||
_a = __read([obj.data_, this.data_], 2), this.data_ = _a[0], obj.data_ = _a[1];
|
||||
MapElementVector_1.MapElementVector._Swap_associative(this.data_, obj.data_);
|
||||
// SWAP COMPARATORS
|
||||
_b = __read([obj.key_comp_, this.key_comp_], 2), this.key_comp_ = _b[0], obj.key_comp_ = _b[1];
|
||||
};
|
||||
/* ---------------------------------------------------------
|
||||
ACCESSORS
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
FlatMultiMap.prototype.nth = function (index) {
|
||||
return this.data_.nth(index);
|
||||
};
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
FlatMultiMap.prototype.key_comp = function () {
|
||||
return this.key_comp_;
|
||||
};
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
FlatMultiMap.prototype.lower_bound = function (key) {
|
||||
return (0, binary_search_1.lower_bound)(this.begin(), this.end(), this._Capsule_key(key), this.value_comp());
|
||||
};
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
FlatMultiMap.prototype.upper_bound = function (key) {
|
||||
return (0, binary_search_1.upper_bound)(this.begin(), this.end(), this._Capsule_key(key), this.value_comp());
|
||||
};
|
||||
FlatMultiMap.prototype._Capsule_key = function (key) {
|
||||
return { first: key };
|
||||
};
|
||||
/* ---------------------------------------------------------
|
||||
POST-PROCESS
|
||||
--------------------------------------------------------- */
|
||||
FlatMultiMap.prototype._Handle_insert = function (_a, _b) { };
|
||||
FlatMultiMap.prototype._Handle_erase = function (_a, _b) { };
|
||||
return FlatMultiMap;
|
||||
}(MultiTreeMap_1.MultiTreeMap));
|
||||
exports.FlatMultiMap = FlatMultiMap;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
(function (FlatMultiMap) {
|
||||
// BODY
|
||||
FlatMultiMap.Iterator = MapElementVector_1.MapElementVector.Iterator;
|
||||
FlatMultiMap.ReverseIterator = MapElementVector_1.MapElementVector.ReverseIterator;
|
||||
FlatMultiMap.__MODULE = "experimental";
|
||||
})(FlatMultiMap = exports.FlatMultiMap || (exports.FlatMultiMap = {}));
|
||||
exports.FlatMultiMap = FlatMultiMap;
|
||||
//# sourceMappingURL=FlatMultiMap.js.map
|
||||
Reference in New Issue
Block a user