<?php
declare(strict_types=1);
namespace League\CommonMark\Delimiter\Processor;
use League\CommonMark\Exception\InvalidArgumentException;
interface DelimiterProcessorCollectionInterface extends \Countable
{
public function add(DelimiterProcessorInterface $processor): void;
public function getDelimiterProcessor(string $char): ?DelimiterProcessorInterface;
public function getDelimiterCharacters(): array;