/** * @license * Copyright Larry Diamond 2017 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/larrydiamond/typescriptcollectionsframework/LICENSE */ import { Hashable } from "./Hashable"; export declare class CString implements Hashable { str: string; constructor(istr: string); equals(t: any): boolean; get(): string; hashCode(): number; }