JensKrumsieck/ChemSharp

View on GitHub
ChemSharp.Molecules/Formats/IAtomFileFormat.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace ChemSharp.Molecules.Formats;

public interface IAtomFileFormat
{
    public List<Atom> Atoms { get; }
    public Atom? ParseAtom(ReadOnlySpan<char> line);
}